@@ -22,9 +22,10 @@ import { registerSingleton } from 'vs/platform/instantiation/common/extensions';
2222import { Registry } from 'vs/platform/registry/common/platform' ;
2323import { IWorkbenchContribution , Extensions as WorkbenchExtensions , IWorkbenchContributionsRegistry } from 'vs/workbench/common/contributions' ;
2424import { LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle' ;
25- import { Action2 , registerAction2 } from 'vs/platform/actions/common/actions' ;
25+ import { Action2 , MenuId , registerAction2 } from 'vs/platform/actions/common/actions' ;
2626import { IQuickInputService , IQuickPickItem } from 'vs/platform/quickinput/common/quickInput' ;
2727import { IProgressService , ProgressLocation } from 'vs/platform/progress/common/progress' ;
28+ import { IsWebContext } from 'vs/platform/contextkey/common/contextkeys' ;
2829
2930const FIVE_MINUTES = 5 * 60 * 1000 ;
3031const THIRTY_SECONDS = 30 * 1000 ;
@@ -380,7 +381,10 @@ class ManageAuthorizedExtensionURIsAction extends Action2 {
380381 id : 'workbench.extensions.action.manageAuthorizedExtensionURIs' ,
381382 title : { value : localize ( 'manage' , "Manage Authorized Extension URIs..." ) , original : 'Manage Authorized Extension URIs...' } ,
382383 category : { value : localize ( 'extensions' , "Extensions" ) , original : 'Extensions' } ,
383- f1 : true
384+ menu : {
385+ id : MenuId . CommandPalette ,
386+ when : IsWebContext . toNegated ( )
387+ }
384388 } ) ;
385389 }
386390
0 commit comments