Skip to content

Commit

Permalink
chore(browser-extension): remove unnecessary permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
wanhose committed Mar 28, 2023
1 parent a1941c6 commit ae450a1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/browser-extension/src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Cookie Dialog Monster",
"version": "6.2.2",
"version": "6.2.3",
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
Expand All @@ -24,15 +24,16 @@
"*://*.gfycat.com/*",
"*://*.mediathekviewweb.de/*",
"*://*.rundschau-online.de/*",
"*://*.youtube.com/embed/*"
"*://*.youtube.com/embed/*",
"*://drive.google.com/*"
],
"js": ["scripts/content.js", "scripts/dialog.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
}
],
"host_permissions": ["http://*/*", "https://*/*"],
"permissions": ["contextMenus", "scripting", "storage", "tabs"],
"permissions": ["contextMenus", "scripting", "storage"],
"web_accessible_resources": [
{
"matches": ["http://*/*", "https://*/*"],
Expand Down

0 comments on commit ae450a1

Please sign in to comment.