From cc28cfa7031008409406520402a989733d6f254f Mon Sep 17 00:00:00 2001 From: wanhose Date: Sun, 19 Apr 2020 15:02:18 +0200 Subject: [PATCH] feat(manifest): create manifest --- manifest.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 manifest.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..59d90e1 --- /dev/null +++ b/manifest.json @@ -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": [""] + } + ], + "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 + } \ No newline at end of file