-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
42 lines (37 loc) · 831 Bytes
/
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
{
"description": "Unofficial. Serve Hypothes.is on any sites even under CSP.",
"manifest_version": 2,
"name": "Hypothes.is bookmarklet",
"version": "1.1.3",
"homepage_url": "https://github.com/Abdillah/hypothesis-firefox",
"icons": {
"48": "icons/hypothesis-48.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"page": "background.html"
},
"page_action": {
"browser_style": true,
"default_icon": {
"19": "icons/hypothesis-19.png",
"38": "icons/hypothesis-38.png"
},
"default_title": "Show Hypothes.is",
"pinned": true
},
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": [ "hypothesis.js" ],
"run_at": "document_end"
}
]
}