-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
49 lines (49 loc) · 1.23 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
{
"name": "Window Cuts",
"version": "0.0.3",
"manifest_version": 2,
"description": "Chrome extension to add keyboard shortcuts for managing multiple Chrome windows",
"homepage_url": "https://github.com/frankcalise/windowcuts-chrome-extension",
"author": {
"name": "Frank Calise"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/bg.html",
"persistent": true
},
"permissions": [
"tabs"
],
"commands": {
"join_current_window": {
"suggested_key": {
"default": "Ctrl+Shift+Home"
},
"description": "Move all tabs from current window to main window"
},
"join_current_tab": {
"suggested_key": {
"default": "Ctrl+Shift+A"
},
"description": "Move current tab from current window to main window"
},
"explode_current_tab": {
"suggested_key": {
"default": "Ctrl+Shift+E"
},
"description": "Move current tab into a new window"
},
"explode_tabs_to_right": {
"suggested_key": {
"default": "Ctrl+Shift+End"
},
"description": "Move all tabs from current window to main window"
}
}
}