forked from lunu-bounir/advanced-bookmark-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.03 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
{
"manifest_version": 2,
"version": "0.1.3",
"name": "Advanced Bookmark Search",
"description": "A fast offline search engine for bookmarks that supports searching operators",
"offline_enabled": true,
"permissions": [
"storage",
"bookmarks"
],
"homepage_url": "https://add0n.com/bookmark-search.html",
"background": {
"persistent": false,
"scripts": [
"xapian.js",
"background.js",
"xapian/xapian_noexception_nowasm.js"
]
},
"icons": {
"16": "data/icons/16.png",
"19": "data/icons/19.png",
"32": "data/icons/32.png",
"38": "data/icons/38.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png",
"256": "data/icons/256.png"
},
"browser_action":{
"default_icon": {
"16": "data/icons/16.png",
"19": "data/icons/19.png",
"32": "data/icons/32.png",
"38": "data/icons/38.png",
"64": "data/icons/64.png"
}
},
"commands": {
"open": {
"description": "Open the bookmark search in a standalone window"
}
}
}