cookie-dialog-monster/src/manifest.json

23 lines
636 B
JSON
Raw Normal View History

2020-04-19 13:02:18 +00:00
{
2020-05-16 15:11:21 +00:00
"name": "Do Not Consent",
2020-05-16 14:31:00 +00:00
"version": "1.8",
"description": "A Chrome extension that allows you to remove cookie consent dialogs automatically",
2020-04-19 13:02:18 +00:00
"content_scripts": [
{
"all_frames": true,
"js": ["js/content.js"],
2020-04-19 14:44:46 +00:00
"matches": ["*://*/*"]
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-16 14:31:00 +00:00
"web_accessible_resources": ["js/modules/*"],
2020-04-19 13:02:18 +00:00
"manifest_version": 2
}