cookie-dialog-monster/manifest.json

22 lines
612 B
JSON
Raw Normal View History

2020-04-19 13:02:18 +00:00
{
"name": "QuantcastAutoRefuser",
"version": "1.0",
2020-04-19 14:53:35 +00:00
"description": "A Chrome extension that allows you to refuse all Quantcast 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",
"default_title": "QuantcastAutoRefuser"
2020-04-19 14:44:46 +00:00
},
2020-04-19 13:02:18 +00:00
"manifest_version": 2
}