chore(browser-extension): remove unnecessary permissions

This commit is contained in:
wanhose 2023-03-28 08:47:42 +02:00
parent a1941c6623
commit ae450a1e24

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Cookie Dialog Monster", "name": "Cookie Dialog Monster",
"version": "6.2.2", "version": "6.2.3",
"default_locale": "en", "default_locale": "en",
"description": "__MSG_appDesc__", "description": "__MSG_appDesc__",
"icons": { "icons": {
@ -24,7 +24,8 @@
"*://*.gfycat.com/*", "*://*.gfycat.com/*",
"*://*.mediathekviewweb.de/*", "*://*.mediathekviewweb.de/*",
"*://*.rundschau-online.de/*", "*://*.rundschau-online.de/*",
"*://*.youtube.com/embed/*" "*://*.youtube.com/embed/*",
"*://drive.google.com/*"
], ],
"js": ["scripts/content.js", "scripts/dialog.js"], "js": ["scripts/content.js", "scripts/dialog.js"],
"matches": ["http://*/*", "https://*/*"], "matches": ["http://*/*", "https://*/*"],
@ -32,7 +33,7 @@
} }
], ],
"host_permissions": ["http://*/*", "https://*/*"], "host_permissions": ["http://*/*", "https://*/*"],
"permissions": ["contextMenus", "scripting", "storage", "tabs"], "permissions": ["contextMenus", "scripting", "storage"],
"web_accessible_resources": [ "web_accessible_resources": [
{ {
"matches": ["http://*/*", "https://*/*"], "matches": ["http://*/*", "https://*/*"],