forked from dalanicolai/gnome-tracker-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
64 lines (62 loc) · 1.84 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
60
61
62
63
{
"manifest_version": "2",
"api_version": "1",
"description": "Deep search files using gnome tracker",
"developer_name": "Daniel Nicolai !!! CHECK README FILE TO ENABLE FULL FUNCTIONALITY, e.g. open with !!!",
"icon": "images/detective_penguin.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "gt_kw",
"type": "keyword",
"name": "Gnome tracker",
"description": "Deep search files using gnome tracker",
"default_value": "gt"
},
{
"id": "ts_kw",
"type": "keyword",
"name": "Tracker search",
"description": "Deep search files using tracker search",
"default_value": "ts"
},
{
"id": "df_kw",
"type": "keyword",
"name": "DocFetcher",
"description": "Deep search files using DocFetcher",
"default_value": "df"
},
{
"id": "lc_kw",
"type": "keyword",
"name": "locate",
"description": "Instantly find files using locate command",
"default_value": "lc"
},
{
"id": "filebrowser",
"type": "input",
"name": "Default File Browser",
"description": "default is 'nautilus', but you can change this to use a different file manager you have installed.",
"default_value": "nautilus"
},
{
"id": "texteditor",
"type": "input",
"name": "Default Text Editor",
"description": "Default is 'gedit', but you can change this to point to any other text editor you have installed",
"default_value": "gedit"
},
{
"id": "autowildcardsearch",
"type": "select",
"name": "Search Tracker and Locate with wildcards by default",
"description": "Automatically convert spaces to wildcards in tracker and locate (warning, may produce more matches)",
"default_value": "No",
"options": ["No", "Yes"]
}
]
}