-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
executable file
·59 lines (55 loc) · 1.34 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
{
"manifest_version": 2,
"name": "Booklight",
"description": "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: control/ctrl+b",
"version": "2.2.1",
"author": "Ahmad Assaf",
"homepage_url": "https://github.com/ahmadassaf/booklight",
"background": {
"scripts": ["background.js"],
"persistent": true
},
"icons": {
"16" : "icons/booklight-16.png",
"48" : "icons/booklight-48.png",
"128": "icons/booklight-128.png"
},
"browser_action": {
"default_icon": {
"19": "icons/booklight-16.png",
"38": "icons/booklight-16.png"
},
"default_title": "Booklight"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": ["css/booklight.css", "css/fontello.css"],
"js": [
"lib/jquery.js",
"lib/fuse.js",
"lib/keyboard.js",
"helper.js",
"booklight.js"
],
"run_at" : "document_end"
}
],
"web_accessible_resources": [
"css/booklight.css",
"css/fontello.css",
"lib/keymaster.js",
"font/fontello.eot",
"font/fontello.svg",
"font/fontello.ttf",
"font/fontello.woff"
],
"permissions": [
"bookmarks",
"tabs",
"storage",
"unlimitedStorage",
"http://fonts.gstatic.com/",
"https://fonts.gstatic.com/"
]
}