forked from pbkhrv/ulauncher-keepassxc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 1.08 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
{
"required_api_version": "^2.0.0",
"name": "KeePassXC Search",
"description": "Quickly search your KeePassXC password manager database",
"developer_name": "Peter Bakhirev",
"icon": "images/keepassxc-search.svg",
"options": {
"query_debounce": 0.2
},
"preferences": [
{
"id": "search",
"type": "keyword",
"name": "KeePassXC database search",
"description": "Search the KeePassXC database and copy passwords and other attributes to the clipboard",
"default_value": "kp"
},
{
"id": "database-path",
"type": "input",
"name": "Password database location",
"default_value": "~/passwords.kdbx"
},
{
"id": "max-results",
"type": "input",
"name": "Maximum number of search results to display",
"default_value": "6"
},
{
"id": "inactivity-lock-timeout",
"type": "input",
"name": "Inactivity lock timeout",
"description": "Lock database if extension hasn't been used for a certain number of seconds. Set to 0 to never lock",
"default_value": "300"
}
]
}