-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmanifest.json
54 lines (54 loc) · 1.31 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
51
52
53
54
{
"name": "Rearrange Tabs",
"version": "3.0.0",
"description": "Allows users to rearrange tabs using keyboard shortcuts",
"author": "Mohnish Thallavajhula",
"manifest_version": 3,
"short_name": "Rearrange Tabs",
"background": {
"service_worker": "rearrange.js"
},
"commands": {
"rtl": {
"suggested_key": {
"default": "Shift+Alt+Left",
"windows": "Shift+Alt+Left",
"mac": "Command+MacCtrl+Left"
},
"description": "Move selected tab(s) left"
},
"rtr": {
"suggested_key": {
"default": "Shift+Alt+Right",
"windows": "Shift+Alt+Right",
"mac": "Command+MacCtrl+Right"
},
"description": "Move selected tab(s) right"
},
"rtf": {
"suggested_key": {
"default": "Shift+Alt+Up",
"windows": "Shift+Alt+Up",
"mac": "Command+MacCtrl+Up"
},
"description": "Move selected tab(s) to the front"
},
"rtb": {
"suggested_key": {
"default": "Shift+Alt+Down",
"windows": "Shift+Alt+Down",
"mac": "Command+MacCtrl+Down"
},
"description": "Move selected tab(s) to the back"
}
},
"action": {
"default_icon": "icon16.png"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}