-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
40 lines (40 loc) · 1.06 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
{
"manifest_version": "2",
"api_version": "1",
"name": "Bookmarks Fuzzy Search",
"description": "Fuzzy search on browser bookmarks.",
"developer_name": "Oleg Kovalev",
"icon": "images/bookmark.svg",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "keyword",
"type": "keyword",
"name": "Invocation",
"description": "Type this keyword and space to activate search",
"default_value": "b"
},
{
"id": "browser",
"type": "select",
"name": "Browser",
"description": "Choose your browser",
"default_value": "chromium",
"options": [
{"value": "chromium", "text": "Chromium"},
{"value": "google", "text": "Google Chrome"},
{"value": "yandex", "text": "Yandex Browser"},
{"value": "custom", "text": "Custom (select file manually)"}
]
},
{
"id": "bookmarks_file",
"type": "input",
"name": "Chromium Bookmarks File",
"description": "Bookmarks file in Chromium format",
"default_value": ""
}
]
}