-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest-chromium.json
65 lines (56 loc) · 1.15 KB
/
manifest-chromium.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"manifest_version": 3,
"name": "doExt Commander",
"description": "Manage anything with custom commands",
"version": "0.0.0",
"icons": {
"48": "/icons/commander.svg",
"96": "/icons/commander.svg"
},
"permissions": [
"scripting",
"tabs",
"tabGroups",
"storage",
"search",
"contextMenus"
],
"optional_permissions": [],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "/dist/background.js"
},
"options_ui": {
"page": "/pages/options.html"
},
"action": {
"default_icon": "/icons/commander.svg",
"default_title": "doExt Commander",
"default_popup": "/pages/popup.html"
},
"web_accessible_resources": [
{
"resources": [
"/icons/commander.svg"
],
"matches": [ "*://*/*" ]
}
],
"commands": {
"open-popup-general": {
"suggested_key": { "default": "Alt+Space" },
"description": "Open the global command input [general]"
},
"open-popup-alpha": {
"description": "Open the global command input [alpha]"
},
"open-popup-beta": {
"description": "Open the global command input [beta]"
},
"open-popup-gamma": {
"description": "Open the global command input [gamma]"
}
}
}