-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
39 lines (39 loc) · 964 Bytes
/
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
{
"api_version": "3",
"authors": "Albin Larsson",
"name": "Clipboard",
"icon": "edit-paste",
"triggers": {
"copy": {
"name": "Copy",
"description": "Copy from clipboard history",
"keyword": "c"
}
},
"preferences": {
"manager": {
"name": "Clipboard Manager",
"type": "select",
"description": "Auto will detect which one (if any) you are currently using. If you have none installed it will download and use Clipster",
"default_value": "Auto",
"options": [
"Auto",
"Clipster",
"CopyQ",
"GPaste",
"Clipman"
]
},
"max_lines": {
"name": "Max lines",
"type": "input",
"description": "Maximum number of lines to show",
"default_value": "20"
},
"copy_hook": {
"name": "Copy hook (optional)",
"type": "text",
"description": "Additional command to run when selecting a clipboard entry"
}
}
}