-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
55 lines (55 loc) · 1.38 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
{
"manifest_version": "1",
"api_version": "1",
"name": "NetworkManager",
"description": "Quick access to nm-cli",
"developer_name": "alsvartr",
"icon": "images/icon.svg",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "nm",
"type": "keyword",
"name": "List all profiles",
"description": "Quick access to all NM profiles & settings",
"default_value": "nm"
},
{
"id": "nm-vpn",
"type": "keyword",
"name": "List VPN profiles",
"description": "Quick access to NM VPN profiles",
"default_value": "vpn"
},
{
"id": "nm-wifi",
"type": "keyword",
"name": "List WIFI networks",
"description": "Quick access to NM available WIFI networks",
"default_value": "wifi"
},
{
"id": "nms",
"type": "keyword",
"name": "List settings",
"description": "Quick access to NM settings",
"default_value": "nms"
},
{
"id": "rescan_interval",
"type": "input",
"name": "Rescan WIFI interval (in seconds)",
"description": "Time interval of WIFI networks rescan",
"default_value": "120"
},
{
"id": "rescan_wait",
"type": "input",
"name": "Rescan WIFI wait time",
"description": "How much time to wait for wifi networks rescan results (in seconds)",
"default_value": "2"
}
]
}