feat(manifest): create manifest

This commit is contained in:
wanhose 2020-04-19 15:02:18 +02:00 committed by wanhose
parent e6ad7bd03a
commit cc28cfa703

22
manifest.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "QuantcastAutoRefuser",
"version": "1.0",
"description": "A Chrome extension which allows you to refuse all Quantcast cookie-consent dialogs automatically",
"content_scripts": [
{
"all_frames": true,
"js": ["js/content.js"],
"matches": ["<all_urls>"]
}
],
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"page_action": {
"default_icon": "assets/icon32.png",
"default_title": "QuantcastAutoRefuser"
},
"manifest_version": 2
}