-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (38 loc) · 908 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
36
37
38
39
{
"manifest_version": 3,
"name": "Tab Mover",
"description": "Rearrange tabs with keyboard shortcuts.",
"version": "2.0.1",
"commands": {
"move-right": {
"suggested_key": {
"mac": "MacCtrl+Shift+PageDown"
},
"description": "move tab right"
},
"alternative-right": {
"suggested_key": {
"mac": "MacCtrl+Shift+Period"
},
"description": "Alternative command to move right."
},
"move-left": {
"suggested_key": {
"mac": "MacCtrl+Shift+PageUp"
},
"description": "move tab left"
},
"alternative-left": {
"suggested_key": {
"mac": "MacCtrl+Shift+Comma"
},
"description": "Alternative command to move left."
},
"new-window": {
"description": "Move the current tab to a new window."
}
},
"background": {
"service_worker": "backgroundscript.js"
}
}