-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 877 Bytes
/
manifest.json
File metadata and controls
39 lines (39 loc) · 877 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
31
32
33
34
35
36
37
38
39
{
"manifest_version": 3,
"name": "Quick Tab Right",
"version": "1.0.0",
"description": "通过快捷键在当前页面右侧快速打开新标签页",
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "Quick Tab Right",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
}
},
"options_page": "options/options.html",
"commands": {
"open-tab-right": {
"suggested_key": {
"default": "Ctrl+T",
"mac": "Ctrl+T"
},
"description": "在当前页面右侧打开新标签页"
}
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
}
}