-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 892 Bytes
/
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
{
"manifest_version": 3,
"name": "New Tab to the Right",
"description": "Opens a new tab to the right of the current tab.",
"version": "1.0",
"icons": {
"128": "128.png"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"open-new-tab": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Opens a new tab to the right"
},
"move-tab-left": {
"suggested_key": {
"default": "Alt+Comma"
},
"description": "Moves the current tab to the left"
},
"move-tab-right": {
"suggested_key": {
"default": "Alt+Period"
},
"description": "Moves the current tab to the right"
}
},
"permissions": [
"tabs"
]
}