-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
50 lines (42 loc) · 1.09 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
49
50
{
"manifest_version": 3,
"name": "QuickShift Redux - Rearrange Chrome Tabs",
"short_name": "QuickShift Redux",
"description": "Easily and quickly rearrange tabs with keyboard shortcuts.",
"version": "1.3.0",
"author": "Kenneth Lu",
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"commands": {
"move-tabs-left": {
"description": "Move tabs to the left",
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "MacCtrl+Shift+Left"
}
},
"move-tabs-right": {
"description": "Move tabs to the right",
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "MacCtrl+Shift+Right"
}
},
"undock-tabs-to-new-window": {
"description": "Undock tabs to a new window",
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "MacCtrl+Shift+U"
}
},
"move-tabs-between-windows": {
"description": "Move tabs between windows",
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "MacCtrl+Shift+M"
}
}
}
}