-
Notifications
You must be signed in to change notification settings - Fork 36
/
manifest.json
47 lines (45 loc) · 1.15 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
{
"manifest_version": 2,
"name": "CLUT: Cycle Last Used Tabs",
"description": "Cycle through last used Chrome tabs using keyboard shortcut.",
"version": "1.7",
"short_name": "CLUT",
"permissions": [
"tabs"
],
"content_security_policy" : "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background":{
"scripts" : ["background.js"]
},
"commands": {
"alt_switch_fast": {
"suggested_key": {
"default": "Alt+W",
"mac": "Alt+W"
},
"description": "Quick switch - Use to switch quickly among last 2 to 4 tabs. (Suggested: Alt+W)"
},
"alt_switch_slow_backward": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "Normal switch backward (Suggested: Alt+S) "
},
"alt_switch_slow_forward": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Normal switch forward (Suggested: Alt+Shift+S)"
}
},
"browser_action": {
"default_icon": "icon16.png"
}
}