-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
75 lines (70 loc) · 1.72 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
67
68
69
70
71
72
73
74
75
{
"manifest_version": 3,
"name": "Tab to Window/Popup - Keyboard Shortcut",
"short_name": "Tab to Window",
"version": "3.3.3",
"author": "Arthur Carabott",
"description": "Add a keyboard shortcut to move the current tab to a new window or popup.",
"minimum_chrome_version": "88",
"icons": {
"16": "icons/ttw16.png",
"24": "icons/ttw16.png",
"32": "icons/ttw16.png",
"48": "icons/ttw48.png",
"128": "icons/ttw128.png"
},
"action": {
"default_title": "Tab to window",
"default_icon": {
"16": "icons/ttw16.png",
"24": "icons/ttw16.png",
"32": "icons/ttw16.png",
"48": "icons/ttw48.png",
"128": "icons/ttw128.png"
}
},
"background": {
"service_worker": "js/service-worker.js",
"type": "module"
},
"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",
"browser_style": true
}
}