-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.25 KB
/
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
40
41
42
43
44
45
46
47
48
{
"manifest_version": 3,
"name": "Tab Rearranger",
"version": "1.2.0",
"description": "Rearrange tabs using keyboard shortcuts",
"background": {
"service_worker": "rearrange.js",
"type": "module"
},
"permissions": ["commands"],
"commands": {
"move-tab-left": {
"suggested_key": {
"default": "Shift+Alt+Left",
"windows": "Shift+Alt+Left",
"mac": "MacCtrl+Shift+Left"
},
"description": "Move active tab left"
},
"move-tab-right": {
"suggested_key": {
"default": "Shift+Alt+Right",
"windows": "Shift+Alt+Right",
"mac": "MacCtrl+Shift+Right"
},
"description": "Move active tab right"
},
"move-tab-to-next-window": {
"suggested_key": {
"default": "Shift+Alt+Up",
"windows": "Shift+Alt+Up",
"mac": "MacCtrl+Shift+Up"
},
"description": "Move active tab to next window"
},
"move-tab-to-new-window": {
"suggested_key": {
"default": "Shift+Alt+N",
"windows": "Shift+Alt+N",
"mac": "MacCtrl+Shift+N"
},
"description": "Move active tab to new window"
},
"move-multiple-tabs-to-new-window": {
"description": "Move multiple tabs to new window"
}
}
}