-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
49 lines (47 loc) · 1.26 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
{
"manifest_version": 2,
"name": "Alt Tab Shortcuts",
"version": "0.0.0",
"description": "Speeds up tab management with simple shortcuts",
"icons": {
"16": "icon.16.png",
"32": "icon.32.png",
"48": "icon.48.png",
"128": "icon.128.png"
},
"background": {
"scripts": ["background.js"]
},
"commands": {
"tabs-move-out": {
"suggested_key": {
"default": "Shift+Alt+Up"
},
"description": "Pop tabs out into new window"
},
"tabs-move-back": {
"suggested_key": {
"default": "Shift+Alt+Down"
},
"description": "Pop tabs back into last window"
},
"tabs-move-next": {
"suggested_key": {
"default": "Shift+Alt+Right"
},
"description": "Move tabs to the next/new window"
},
"tabs-move-prev": {
"suggested_key": {
"default": "Shift+Alt+Left"
},
"description": "Move tabs to the previous window"
}
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"short_name": "AltTabs",
"permissions": ["tabs"]
}