From 6c4d72fa59dd83a09dd8c617f012386f3f49b9f8 Mon Sep 17 00:00:00 2001 From: wanhose Date: Sat, 3 Apr 2021 17:10:28 +0200 Subject: [PATCH] chore(manifest): run content script at document start and upgrade version --- src/manifest.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index d3b2b8d..114ab93 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Do Not Consent", - "version": "3.2.1", + "version": "3.2.2", "default_locale": "en", "description": "__MSG_appDesc__", "icons": { @@ -18,9 +18,10 @@ { "all_frames": true, "js": ["scripts/content.js"], - "matches": ["http://*/*", "https://*/*"] + "matches": ["http://*/*", "https://*/*"], + "run_at": "document_start" } ], "permissions": ["storage", "unlimitedStorage"], - "web_accessible_resources": ["filters/index.txt"] + "web_accessible_resources": ["elements/index.txt"] }