diff --git a/webpack/utils/manifest.js b/webpack/utils/manifest.js index 9394ab82..bf069ff0 100644 --- a/webpack/utils/manifest.js +++ b/webpack/utils/manifest.js @@ -39,13 +39,7 @@ function generateManifest(options) { description: 'Test', }, }, - optional_permissions: [ - 'cookies', - '', - 'webRequest', - 'webRequestBlocking', - 'pageCapture', - ], + optional_permissions: ['cookies', '', 'webRequest', 'webRequestBlocking'], }; } if (targetBrowser === 'Firefox') { diff --git a/webpack/utils/manifest.spec.ts b/webpack/utils/manifest.spec.ts index bb7b4264..1f6c90bd 100644 --- a/webpack/utils/manifest.spec.ts +++ b/webpack/utils/manifest.spec.ts @@ -54,13 +54,7 @@ const CHROME_MANIFEST = { 'contextMenus', ], commands: { 'toggle-feature-foo': { suggested_key: { default: 'Alt+S' }, description: 'Test' } }, - optional_permissions: [ - 'cookies', - '', - 'webRequest', - 'webRequestBlocking', - 'pageCapture', - ], + optional_permissions: ['cookies', '', 'webRequest', 'webRequestBlocking'], }; describe('test generateManifest', () => {