Selaa lähdekoodia

clean unnecessary and duplicate permissions from manifest

alexchenzl 5 kuukautta sitten
vanhempi
commit
76f19ea1ff
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      chrome-extension/manifest.js

+ 1 - 1
chrome-extension/manifest.js

@@ -40,7 +40,7 @@ const manifest = withSidePanel({
   version: packageJson.version,
   description: '__MSG_extensionDescription__',
   host_permissions: ['<all_urls>'],
-  permissions: ['storage', 'scripting', 'tabs', 'activeTab', 'notifications', 'debugger', 'sidePanel'],
+  permissions: ['storage', 'scripting', 'tabs', 'activeTab', 'debugger'],
   options_page: 'options/index.html',
   background: {
     service_worker: 'background.iife.js',