forked from acarabott/tabToWindow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
66 lines (61 loc) · 1.37 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"manifest_version": 2,
"name": "Tab to Window/Popup - Keyboard Shortcut",
"short_name": "Tab to Window",
"version": "3.3.1",
"author": "Arthur Carabott",
"description": "Add a keyboard shortcut to move the current tab to a new window or popup.",
"minimum_chrome_version": "61",
"icons": {
"16": "icons/ttw16.png",
"48": "icons/ttw48.png",
"128": "icons/ttw128.png"
},
"browser_action": {
"default_title": "Tab to window"
},
"background": {
"page": "background.html",
"persistent": false
},
"commands": {
"01-tab-to-window-normal": {
"suggested_key": {
"default": "Alt+X",
"linux": "Alt+Shift+X"
},
"description": "Window"
},
"02-tab-to-window-popup": {
"suggested_key": {
"default": "Alt+C",
"linux": "Alt+Shift+C"
},
"description": "Popup"
},
"03-tab-to-window-next": {
"suggested_key": {
"default": "Alt+Z",
"linux": "Alt+Shift+Z"
},
"description": "Next Window"
},
"04-tab-to-window-previous": {
"description": "Previous Window"
},
"05-tab-to-window-display": {
"suggested_key": {
"default": "Alt+D",
"linux": "Alt+Shift+D",
"windows": "Alt+Shift+D"
},
"description": "Next Display"
}
},
"permissions": ["storage", "system.display", "contextMenus"],
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
}
}