-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
48 lines (48 loc) · 1.3 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
{
"action": {
"default_icon": "icon.128.png",
"default_popup": "options.html"
},
"background": {
"service_worker": "background.js"
},
"commands": {
"tabs-move-back": {
"description": "Pop tabs back into last window",
"suggested_key": {
"default": "Shift+Alt+Down"
}
},
"tabs-move-next": {
"description": "Move tabs to the next/new window",
"suggested_key": {
"default": "Shift+Alt+Right"
}
},
"tabs-move-out": {
"description": "Pop tabs out into new window",
"suggested_key": {
"default": "Shift+Alt+Up"
}
},
"tabs-move-prev": {
"description": "Move tabs to the previous window",
"suggested_key": {
"default": "Shift+Alt+Left"
}
}
},
"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"
},
"manifest_version": 3,
"name": "Alt Tab Shortcuts",
"options_page": "options.html",
"permissions": [],
"short_name": "AltTabs",
"version": "0.0.0"
}