-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
91 lines (91 loc) · 1.94 KB
/
manifest.json
File metadata and controls
91 lines (91 loc) · 1.94 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "2.6.2",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"permissions": [
"storage",
"contextMenus",
"activeTab",
"tabs"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"commands": {
"command_slot_1": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "__MSG_commandSlot1__"
},
"command_slot_2": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "__MSG_commandSlot2__"
},
"command_slot_3": {
"suggested_key": {
"default": "Ctrl+Shift+3",
"mac": "Command+Shift+3"
},
"description": "__MSG_commandSlot3__"
},
"command_slot_4": {
"suggested_key": {
"default": "Ctrl+Shift+4",
"mac": "Command+Shift+4"
},
"description": "__MSG_commandSlot4__"
},
"command_slot_5": {
"description": "__MSG_commandSlot5__"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts/content-common.js",
"content-scripts/minimap.js",
"content-scripts/content-core.js",
"content-scripts/controls.js",
"content-scripts/content.js"
],
"css": [
"styles.css"
]
}
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"images/icon48.png",
"content-scripts/navigation-bridge.js"
],
"matches": [
"<all_urls>"
]
}
]
}