From 84d4945e7dcca1716c72ba8ef74b7e16a559d6af Mon Sep 17 00:00:00 2001 From: wanhose Date: Sun, 24 May 2020 21:43:02 +0200 Subject: [PATCH] feat(manifest): update with author --- src/manifest.json | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index d37ec9f..b76e396 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,14 +1,9 @@ { + "manifest_version": 2, "name": "Do Not Consent", "version": "2.2", + "default_locale": "en", "description": "A Chrome extension that allows you to remove cookie consent dialogs automatically", - "content_scripts": [ - { - "all_frames": true, - "js": ["js/content.js"], - "matches": ["*://*/*"] - } - ], "icons": { "16": "assets/icon16.png", "48": "assets/icon48.png", @@ -18,6 +13,13 @@ "default_icon": "assets/icon32.png", "default_title": "Do Not Consent" }, - "web_accessible_resources": ["js/modules/*"], - "manifest_version": 2 + "author": "wanhose", + "content_scripts": [ + { + "all_frames": true, + "js": ["js/content.js"], + "matches": ["*://*/*"] + } + ], + "web_accessible_resources": ["js/modules/*"] } \ No newline at end of file