forked from samclark/pinboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·63 lines (63 loc) · 1.28 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
{
"manifest_version": 2,
"name": "Pinboard",
"version": "2.2.1",
"description": "A toolbar button for the Pinboard bookmarking service (http://pinboard.in).",
"icons": {
"64": "icon_64.png",
"128": "icon_128.png"
},
"background": {
"scripts": [
"jquery-1.8.3.min.js",
"settings.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icon_19_light.png",
"default_title": "Pinboard",
"default_popup": "popup.html"
},
"options_page": "options.html",
"permissions": [
"activeTab",
"notifications",
"https://*.pinboard.in/*"
],
"web_accessible_resources": [
"icon_19_dark.png",
"icon_19_light.png",
"icon_48.png",
"icon_64.png",
"icon_128.png",
"info_16.png",
"jquery-1.8.3.min.js",
"jquery-ui-1.9.2.custom.min.js",
"options.js",
"popup.js",
"settings.js",
"star_12_blue.png",
"star_12_gray.png"
],
"commands": {
"save-bookmark": {
"suggested_key": {
"default": "Ctrl+Shift+K"
},
"description": "Save Bookmark"
},
"quick-save-bookmark": {
"suggested_key": {
"default": "Ctrl+Shift+Q"
},
"description": "Quick Save Bookmark"
},
"read-later": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Read Later"
}
}
}