-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 1.28 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
{
"api_version": "3",
"name": "Ringboard",
"authors": "hedgieinsocks",
"icon": "edit-paste",
"instructions": "Install and configure <a href='https://github.com/SUPERCILEX/clipboard-history'>ringboard</a> so it is available system-wide",
"triggers": {
"regular": {
"keyword": "c",
"name": "Literal Search",
"description": "Look for exact matches"
},
"fuzzy": {
"keyword": "cf",
"name": "Fuzzy Search",
"description": "Look for fuzzy matches"
}
},
"preferences": {
"threshold": {
"type": "number",
"name": "Fuzzy Threshold",
"description": "Discard the items below this score",
"default_value": 40,
"min": 0,
"max": 99
},
"scope": {
"type": "number",
"name": "Max Items",
"description": "Limit the search scope to N last items",
"default_value": 500,
"min": 100,
"max": 10000
},
"highlight": {
"type": "checkbox",
"name": "Highlight Matches",
"description": "Draws attension to the matched strings",
"default_value": true
}
}
}