[Plugin] how to add a AssetContextMenu

  1. I want use editor plugin add a menu like, AssetContextMenu
    2

FContentBrowserModule& AssetContextModule = FModuleManager::LoadModuleChecked(“ContentBrowser”);

i cant find functin to add it like

	TSharedPtr<FExtender> ToolbarExtender = MakeShareable(new FExtender);
	ToolbarExtender->AddToolBarExtension("Settings", EExtensionHook::After, PluginCommands, FToolBarExtensionDelegate::CreateRaw(this, &FAssetToolKitModule::AddToolbarExtension));
	
	LevelEditorModule.GetToolBarExtensibilityManager()->AddExtender(ToolbarExtender);

have body to do it ?