-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
manifest.edge.json
46 lines (46 loc) · 1.14 KB
/
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
40
41
42
43
44
45
46
{
"manifest_version": 3,
"name": "Cookie-Editor",
"version": "1.13.0",
"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": {
"service_worker": "cookie-editor.js",
"type": "module"
},
"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"
},
"side_panel": {
"default_path": "interface/sidepanel/cookie-list.html"
},
"devtools_page": "interface/devtools/devtool.html",
"options_ui": {
"page": "interface/options/options.html"
},
"permissions": [
"cookies",
"tabs",
"storage",
"sidePanel"
],
"host_permissions": [
"<all_urls>"
],
"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"
},
"incognito": "split"
}