-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 826 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "Let’s cook this thing Jesse.",
"version": "1.0",
"manifest_version": 3,
"description": "opens side panel, visible to all site",
"background": {
"service_worker": "service-worker.js"
},
"action" : {
"default_title": "click to open panel"
},
"icons": {
"16": "icons/icons1.png",
"48": "icons/icons2.png",
"128": "icons/icons3.png"
},
"commands" : {
"_execute_action": {
"suggested_key": {
"default" : "Ctrl+Q",
"mac" : "Command+Q"
}
}
},
"side_panel": {
"default_path": "index.html"
},
"permissions": ["sidePanel", "tabs", "contextMenus", "storage", "webRequest"],
"host_permissions": ["https://ern-backend-vercel.vercel.app/*"]
}