forked from Rob--W/cookie-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 864 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
27
28
29
30
31
{
"name": "Cookie Manager",
"description": "An efficient cookie manager. View, edit, delete and search for cookies. Designed for privacy aware users. Automatically opens the Cookie Manager upon extension startup (this can be configured via the UI).",
"version": "1.3",
"manifest_version": 2,
"permissions": [
"activeTab",
"cookies",
"storage",
"*://*/*"
],
"options_ui": {
"page": "cookie-manager.html",
"open_in_tab": true
},
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"icons": {
"48": "icons/48.png",
"96": "icons/96.png"
},
"browser_action": {
"default_icon": {
"48": "icons/48.png",
"96": "icons/96.png"
},
"default_title": "Open Cookie Manager"
}
}