-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmanifest.json
More file actions
61 lines (61 loc) · 1.59 KB
/
Copy pathmanifest.json
File metadata and controls
61 lines (61 loc) · 1.59 KB
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
{
"required_api_version": "^2.0.0",
"name": "Firefox History",
"description": "Search into Firefox history",
"developer_name": "Riccardo Massidda",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "kw",
"type": "keyword",
"name": "Firefox History",
"default_value": "fh"
},
{
"id": "aggregate",
"type": "select",
"name": "Aggregate results by hostname",
"default_value": "false",
"options":[
{"value":"true","text":"Yes"},
{"value":"false","text":"No"}
]
},
{
"id": "order",
"type": "select",
"name": "Results order",
"default_value": "frecency",
"options":[
{"value":"frecency","text":"Firefox Frecency"},
{"value":"visit","text":"Visit Count"},
{"value":"recent","text":"Last Visit"}
]
},
{
"id": "limit",
"type": "input",
"name": "Results number",
"default_value": "5"
},
{
"id": "firefox_profile_location",
"type": "text",
"name": "Firefox Profile Location",
"default_value": "snap/firefox/common/.mozilla/firefox/, .mozilla/firefox/, .config/mozilla/firefox/"
},
{
"id": "bookmarks_only",
"type": "select",
"name": "Search only in bookmarks",
"default_value": "false",
"options":[
{"value":"true","text":"Yes"},
{"value":"false","text":"No"}
]
}
]
}