-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
26 lines (26 loc) · 950 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"author": "Stefan Kreuter",
"background": {
"persistent": false,
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": "images/icon19-gray.png",
"default_title": "Cookie Notice accepted"
},
"description": "Minimalistic extension which sets common cookies (e.g. cookie_notice_accepted=true) to accept cookie notices on all websites.",
"homepage_url": "https://github.com/kreutix/cookie-notice-accepted",
"icons": {
"128": "images/icon128.png",
"16": "images/icon16.png",
"19": "images/icon19.png",
"48": "images/icon48.png"
},
"manifest_version": 2,
"name": "Cookie Notice accepted",
"options_page": "options.html",
"permissions": [ "storage", "webNavigation", "tabs", "cookies", "http://*/*", "https://*/*" ],
"short_name": "cookie-notice-accepted",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.0.1"
}