cookie-dialog-monster/manifest.json

37 lines
856 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",
"version": "3.3.0",
2020-12-05 22:44:36 +00:00
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
2020-12-05 22:44:36 +00:00
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"browser_action": {
"default_icon": "assets/icon-disabled.png",
2020-12-05 22:44:36 +00:00
"default_title": "Do Not Consent"
},
"author": "wanhose",
"background": {
"persistent": false,
"scripts": ["scripts/background.js"]
},
2020-12-05 22:44:36 +00:00
"content_scripts": [
{
"js": ["scripts/content.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
2020-12-05 22:44:36 +00:00
}
],
"permissions": ["storage", "tabs", "unlimitedStorage"],
"web_accessible_resources": [
"data/elements.txt",
"scripts/popup.js",
"styles/index.css",
"styles/reset.css"
]
2020-12-05 22:44:36 +00:00
}