cookie-dialog-monster/src/manifest.json

24 lines
661 B
JSON
Raw Normal View History

2020-04-19 13:02:18 +00:00
{
2020-05-24 19:43:02 +00:00
"manifest_version": 2,
2020-05-16 15:11:21 +00:00
"name": "Do Not Consent",
2020-05-23 18:48:17 +00:00
"version": "2.2",
"description": "A Chrome extension that allows you to remove cookie consent dialogs automatically",
2020-04-19 13:02:18 +00:00
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"page_action": {
"default_icon": "assets/icon32.png",
2020-05-16 15:11:21 +00:00
"default_title": "Do Not Consent"
2020-04-19 14:44:46 +00:00
},
2020-05-24 19:43:02 +00:00
"author": "wanhose",
"content_scripts": [
{
"all_frames": true,
"js": ["js/content.js"],
"matches": ["*://*/*"]
}
],
"web_accessible_resources": ["js/modules/*"]
2020-04-19 13:02:18 +00:00
}