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