cookie-dialog-monster/manifest.json

32 lines
861 B
JSON
Raw Normal View History

2020-04-19 13:02:18 +00:00
{
2020-12-05 22:44:36 +00:00
"manifest_version": 2,
"name": "Do Not Consent",
2021-04-11 17:39:40 +00:00
"version": "3.4.2",
2020-12-05 22:44:36 +00:00
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
2021-04-11 09:45:21 +00:00
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
"48": "assets/icons/48.png",
"128": "assets/icons/128.png"
2020-12-05 22:44:36 +00:00
},
"browser_action": {
2021-04-11 09:45:21 +00:00
"default_icon": "assets/icons/disabled.png",
2020-12-05 22:44:36 +00:00
"default_title": "Do Not Consent"
},
"author": "wanhose",
"background": {
"scripts": ["scripts/background.js"]
},
2020-12-05 22:44:36 +00:00
"content_scripts": [
{
2021-04-08 22:13:36 +00:00
"exclude_matches": ["https://accounts.google.com/*"],
"js": ["scripts/content.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
2020-12-05 22:44:36 +00:00
}
],
2021-04-11 09:45:21 +00:00
"permissions": ["https://raw.githubusercontent.com/*", "storage", "tabs"],
"web_accessible_resources": ["assets/fonts/*", "scripts/*", "styles/*"]
2020-12-05 22:44:36 +00:00
}