-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
45 lines (44 loc) · 1.2 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
{
"name": "Navigate unpinned tabs",
"description": "Ignore pinned tabs when using the keyboard shortcuts ctrl/cmd + [1-8]. If you have 2 pinned tabs and 3 unpinned and enter ctrl+1, you will be taken to the first unpinned tab.",
"homepage_url": "https://github.com/naxoc/navigate-unpinned",
"manifest_version": 2,
"version": "1.1",
"background": {
"scripts": ["background.js"]
},
"commands": {
"1": {
"suggested_key": { "default": "Ctrl+1" },
"description": "Focus tab 1"
},
"2": {
"suggested_key": { "default": "Ctrl+2" },
"description": "Focus tab 2"
},
"3": {
"suggested_key": { "default": "Ctrl+3" },
"description": "Focus tab 3"
},
"4": {
"suggested_key": { "default": "Ctrl+4" },
"description": "Focus tab 4"
},
"5": {
"suggested_key": { "default": "Ctrl+5" },
"description": "Focus tab 5"
},
"6": {
"suggested_key": { "default": "Ctrl+6" },
"description": "Focus tab 6"
},
"7": {
"suggested_key": { "default": "Ctrl+7" },
"description": "Focus tab 7"
},
"8": {
"suggested_key": { "default": "Ctrl+8" },
"description": "Focus tab 8"
}
}
}