-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
64 lines (54 loc) · 1.26 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
{
"manifest_version": 2,
"name": "Quick Links",
"description": "This extension allows users to create keyboard shortcuts of their favorite websites from an easy-to-use UI.",
"version": "1.4",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"commands": {
"link1": {
"suggested_key": {
"default": "Alt+1",
"mac": "Alt+1"
},
"description": "Hotkey 1 (opens link 1 in new tab)"
},
"link2": {
"suggested_key": {
"default": "Alt+2",
"mac": "Alt+2"
},
"description": "Hotkey 2 (opens link 2 in new tab)"
},
"link3": {
"suggested_key": {
"default": "Alt+3",
"mac": "Alt+3"
},
"description": "Hotkey 3 (opens link 3 in new tab)"
},
"link4": {
"suggested_key": {
"default": "Alt+4",
"mac": "Alt+4"
},
"description": "Hotkey 4 (opens link 4 in new tab)"
}
},
"browser_action": {
"default_title": "Quick Links",
"default_popup": "popup.html",
"default_background": "background.html"
},
"icons": {
"16": "images/icon_16x16.png",
"48": "images/icon_48x48.png",
"128": "images/icon_128x128.png"
},
"permissions": [
"tabs",
"storage"
]
}