forked from Moustachauve/cookie-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.edge.json
39 lines (39 loc) · 1016 Bytes
/
manifest.edge.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
32
33
34
35
36
37
38
39
{
"manifest_version": 2,
"name": "Cookie-Editor",
"version": "1.10.1",
"author": "Moustachauve",
"description": "Simple yet powerful Cookie Editor that allow you to quickly create, edit and delete cookies without leaving your tab.",
"offline_enabled": true,
"background": {
"scripts": [
"interface/lib/browserDetector.js",
"cookie-editor.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "icons/cookie-16-filled.png",
"19": "icons/cookie-19-filled.png",
"32": "icons/cookie-32-filled.png",
"48": "icons/cookie-48-filled.png"
},
"default_title": "Cookie-Editor",
"default_popup": "interface/popup/cookie-list.html"
},
"devtools_page": "interface/devtools/devtool.html",
"permissions": [
"cookies",
"<all_urls>",
"tabs",
"storage"
],
"icons": {
"16": "icons/cookie-16-filled.png",
"19": "icons/cookie-19-filled.png",
"32": "icons/cookie-32-filled.png",
"48": "icons/cookie-48-filled.png",
"128": "icons/cookie-128-filled.png"
}
}