chore(manifest): run content script at document start and upgrade version

This commit is contained in:
wanhose 2021-04-03 17:10:28 +02:00
parent 9c9752de4b
commit 6c4d72fa59

View File

@ -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"]
}