-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
47 lines (47 loc) · 1.4 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
{
"required_api_version": "^2.0.0",
"name": "Session Manager",
"description": "An extension that offers you session options",
"developer_name": "lighttigerXIV",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.05
},
"preferences": [
{
"id": "kw",
"type": "keyword",
"name": "Session Manager",
"default_value": "sm"
},
{
"id": "icon",
"type": "select",
"name": "Icon style",
"default_value": "color",
"options": [
{"text": "Colorful icon", "value": "color"},
{"text": "Black icon", "value": "black"},
{"text": "White icon", "value": "white"}
]
},
{
"id": "desktop-environment",
"type": "select",
"name": "Desktop Environment",
"default_value": "gnome",
"options": [
{"text": "Gnome", "value": "gnome"},
{"text": "KDE", "value": "kde"},
{"text": "Other", "value": "other"}
]
},
{
"id": "other_logout",
"type": "text",
"name": "Other Logout",
"description": "It will run this command on logout if other in Desktop Environment is selected",
"default_value": ""
}
]
}