-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
110 lines (107 loc) · 2.36 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"manifest_version": 2,
"name": "crouton-wm",
"description": "A tiling window manager for Crouton",
"version": "1.0",
"background": {
"scripts": ["build/main.js"],
"persistent": true
},
"permissions": [
"tabs",
"activeTab",
"management"
],
"commands": {
"switch-layout": {
"suggested_key": {
"default": "Alt+Space"
},
"description": "Switch the window manager layout (left-stack, right-stack, or monocle)"
},
"open-terminal": {
"suggested_key": {
"default": "Alt+J"
},
"description": "Open crosh in a new window"
},
"make-master": {
"suggested_key": {
"default": "Alt+L"
},
"description": "Make the current window master"
},
"close-window": {
"suggested_key": {
"default": "Alt+Shift+C"
},
"description": "Close the current window"
},
"open-chrome": {
"description": "Open a Chrome window"
},
"rotate-window": {
"description": "Like alt-tab behaviour but in the right order"
},
"desktop-1": {
"description": "Switch to desktop 1"
},
"desktop-2": {
"description": "Switch to desktop 2"
},
"desktop-3": {
"description": "Switch to desktop 3"
},
"desktop-4": {
"description": "Switch to desktop 4"
},
"desktop-5": {
"description": "Switch to desktop 5"
},
"desktop-6": {
"description": "Switch to desktop 6"
},
"desktop-7": {
"description": "Switch to desktop 7"
},
"desktop-8": {
"description": "Switch to desktop 8"
},
"desktop-9": {
"description": "Switch to desktop 9"
},
"desktop-0": {
"description": "Switch to desktop 0"
},
"send-1": {
"description": "Send to desktop 1"
},
"send-2": {
"description": "Send to desktop 2"
},
"send-3": {
"description": "Send to desktop 3"
},
"send-4": {
"description": "Send to desktop 4"
},
"send-5": {
"description": "Send to desktop 5"
},
"send-6": {
"description": "Send to desktop 6"
},
"send-7": {
"description": "Send to desktop 7"
},
"send-8": {
"description": "Send to desktop 8"
},
"send-9": {
"description": "Send to desktop 9"
},
"send-0": {
"description": "Send to desktop 0"
}
}
}