-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
70 lines (70 loc) · 1.82 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
65
66
67
68
69
70
{
"manifest_version": 2,
"name": "Pinboard+",
"version": "1.2.0",
"description": "A better firefox extension for Pinboard (http://pinboard.in).",
"homepage_url": "https://github.com/lostsnow/pinboard-firefox",
"icons": {
"48": "img/appicon-48.png",
"96": "img/appicon-96.png"
},
"applications": {
"gecko": {
"id": "pinboard-plus@lsproc.com",
"strict_min_version": "57.0"
}
},
"permissions": [
"storage",
"tabs",
"<all_urls>"
],
"background": {
"scripts": [
"/js/libs/jquery.min.js",
"js/common.js",
"js/background.js"
]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start",
"js": ["js/description.js"],
"all_frames": true
}
],
"browser_action": {
"browser_style": true,
"default_title": "Pinboard+",
"default_icon": {
"18": "img/icon-gray-18.png",
"32": "img/icon-gray-32.png",
"36": "img/icon-gray-36.png",
"64": "img/icon-gray-64.png"
},
"default_popup": "html/popup.html"
},
"page_action": {
"browser_style": true,
"default_title": "Pinboard+",
"default_icon": {
"18": "img/icon-gray-18.png",
"32": "img/icon-gray-32.png",
"36": "img/icon-gray-36.png",
"64": "img/icon-gray-64.png"
},
"default_popup": "html/popup.html"
},
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+P"
}
}
}
}