-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.42 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"manifest_version": 2,
"name": "Tab Split Merger",
"version": "1.2.2",
"description": "Split tabs into separate windows and merge them back together into one.",
"homepage_url": "https://github.com/mac641/tab-split-merger",
"permissions": ["menus", "activeTab", "storage"],
"background": {
"page": "background/background.html"
},
"icons": {
"16": "icons/split_16.png",
"32": "icons/split_32.png",
"64": "icons/split_64.png"
},
"commands": {
"mergeWindows": {
"suggested_key": {
"default": "Alt+Shift+M",
"mac": "MacCtrl+Shift+M"
},
"description": "Merge windows"
},
"splitAllTabs": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "MacCtrl+Shift+S"
},
"description": "Split tabs in all windows."
},
"splitCurrentTabs": {
"suggested_key": {
"default": "Alt+Shift+D",
"mac": "MacCtrl+Shift+D"
},
"description": "Split tabs in current window."
},
"moveLeft": {
"suggested_key": {
"default": "Alt+Shift+Y",
"mac": "MacCtrl+Shift+Y"
},
"description": "Move all tabs on the left including the currently active tab into a new window."
},
"moveRight": {
"suggested_key": {
"default": "Alt+Shift+X",
"mac": "MacCtrl+Shift+X"
},
"description": "Move all tabs on the right into a new window."
}
}
}