cookie-dialog-monster/manifest.json
2021-04-11 19:39:40 +02:00

32 lines
861 B
JSON

{
"manifest_version": 2,
"name": "Do Not Consent",
"version": "3.4.2",
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
"48": "assets/icons/48.png",
"128": "assets/icons/128.png"
},
"browser_action": {
"default_icon": "assets/icons/disabled.png",
"default_title": "Do Not Consent"
},
"author": "wanhose",
"background": {
"scripts": ["scripts/background.js"]
},
"content_scripts": [
{
"exclude_matches": ["https://accounts.google.com/*"],
"js": ["scripts/content.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
}
],
"permissions": ["https://raw.githubusercontent.com/*", "storage", "tabs"],
"web_accessible_resources": ["assets/fonts/*", "scripts/*", "styles/*"]
}