From 77d63554e48a4973d39e23e86b2b824b00e94ad0 Mon Sep 17 00:00:00 2001 From: wanhose Date: Thu, 1 Jul 2021 15:11:43 +0200 Subject: [PATCH] feat(manifest): update permissions and version --- manifest.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index ab1296a..92a31af 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Do Not Consent", - "version": "4.0.3", + "version": "4.1.0", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { @@ -21,12 +21,11 @@ "content_scripts": [ { "all_frames": true, - "css": ["styles/content.css"], "js": ["scripts/content.js"], "matches": ["http://*/*", "https://*/*"], "run_at": "document_start" } ], - "permissions": ["https://raw.githubusercontent.com/*", "storage", "tabs"], + "permissions": ["http://*/*", "https://*/*", "storage", "tabs"], "web_accessible_resources": ["assets/fonts/*", "scripts/*", "styles/*"] }