forked from mohnish/rearrange-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 947 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
{
"name": "Rearrange Tabs",
"version": "2.0.0",
"description": "Allows users to rearrange tabs using keyboard shortcuts",
"author": "Mohnish Thallavajhula",
"manifest_version": 2,
"short_name": "Rearrange Tabs",
"background": {
"scripts": ["rearrange.js"],
"persistent": false
},
"commands": {
"move-tab-left": {
"suggested_key": {
"default": "Shift+Alt+Left",
"windows": "Shift+Alt+Left",
"mac": "MacCtrl+Shift+Left"
},
"description": "Move active tab to left"
},
"move-tab-right": {
"suggested_key": {
"default": "Shift+Alt+Right",
"windows": "Shift+Alt+Right",
"mac": "MacCtrl+Shift+Right"
},
"description": "Move active tab to right"
}
},
"browser_action": {
"default_icon": "icon16.png"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}