-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (46 loc) · 1.34 KB
/
manifest.json
File metadata and controls
48 lines (46 loc) · 1.34 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
{
"name": "TabControl",
"version": "1.0",
"manifest_version": 2,
"description": "This extension can quickly switch to other open tabs with just your keyboard.",
"icons": { "16": "src/icon16.png",
"48": "src/icon48.png",
"128": "src/icon128.png" },
"permissions": [
"tabs",
"activeTab"
],
"background" : {
"scripts" : ["background.js"]
},
"commands": {
"toggle-left": {
"suggested_key": {
"default": "Ctrl+Left",
"mac": "Command+Shift+Left"
},
"description": "Navigate to the left page."
},
"toggle-right": {
"suggested_key": {
"default": "Ctrl+Right",
"mac": "Command+Shift+Right"
},
"description": "Navigate to the right page"
},
"toggle-two-right": {
"suggested_key": {
"default": "Ctrl+Up",
"mac": "Command+Shift+Up"
},
"description": "Jump over the right tab"
},
"toggle-two-left": {
"suggested_key": {
"default": "Ctrl+Down",
"mac": "Command+Shift+Down"
},
"description":"Jump over the left tab"
}
}
}