feat(manifest): update with author

This commit is contained in:
wanhose 2020-05-24 21:43:02 +02:00
parent e34c8d43f6
commit 84d4945e7d

View File

@ -1,14 +1,9 @@
{ {
"manifest_version": 2,
"name": "Do Not Consent", "name": "Do Not Consent",
"version": "2.2", "version": "2.2",
"default_locale": "en",
"description": "A Chrome extension that allows you to remove cookie consent dialogs automatically", "description": "A Chrome extension that allows you to remove cookie consent dialogs automatically",
"content_scripts": [
{
"all_frames": true,
"js": ["js/content.js"],
"matches": ["*://*/*"]
}
],
"icons": { "icons": {
"16": "assets/icon16.png", "16": "assets/icon16.png",
"48": "assets/icon48.png", "48": "assets/icon48.png",
@ -18,6 +13,13 @@
"default_icon": "assets/icon32.png", "default_icon": "assets/icon32.png",
"default_title": "Do Not Consent" "default_title": "Do Not Consent"
}, },
"web_accessible_resources": ["js/modules/*"], "author": "wanhose",
"manifest_version": 2 "content_scripts": [
{
"all_frames": true,
"js": ["js/content.js"],
"matches": ["*://*/*"]
}
],
"web_accessible_resources": ["js/modules/*"]
} }