-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
47 lines (47 loc) · 1.01 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"manifest_version": 3,
"name": "Onyx Extension",
"version": "1.0",
"description": "Onyx integration for Chrome",
"permissions": [
"sidePanel",
"storage",
"activeTab",
"scripting",
"tabs",
"cookies"
],
"host_permissions": ["https://cloud.onyx.app/*"],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "public/icon16.png",
"48": "public/icon48.png",
"128": "public/icon128.png"
}
},
"icons": {
"16": "public/icon16.png",
"48": "public/icon48.png",
"128": "public/icon128.png"
},
"options_page": "src/pages/options.html",
"chrome_url_overrides": {
"newtab": "src/pages/onyx_home.html"
},
"commands": {
"toggle-new-tab-override": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+O"
},
"description": "Toggle Onyx New Tab Override"
}
},
"side_panel": {
"default_path": "src/pages/panel.html"
}
}