-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
166 lines (166 loc) · 4.56 KB
/
manifest.json
File metadata and controls
166 lines (166 loc) · 4.56 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"required_api_version": "2",
"name": "Steam",
"description": "uLauncher Steam integration",
"developer_name": "Jack5",
"icon": "images/icon.png",
"preferences": [
{
"id": "KEYWORD",
"type": "keyword",
"name": "Steam search",
"description": "Search through everything Steam",
"default_value": "s"
},
{
"id": "KEYWORD_APPS",
"type": "keyword",
"name": "Steam apps",
"description": "Search through Steam apps",
"default_value": "sa"
},
{
"id": "KEYWORD_FRIENDS",
"type": "keyword",
"name": "Steam friends",
"description": "Search through Steam friends",
"default_value": "sf"
},
{
"id": "KEYWORD_NAVIGATIONS",
"type": "keyword",
"name": "Steam navigations",
"description": "Search through Steam navigation items",
"default_value": "sn"
},
{
"id": "KEYWORD_EXTENSION",
"type": "keyword",
"name": "Steam extension actions",
"description": "Take control of the Steam extension",
"default_value": "se"
},
{
"id": "STEAM_FOLDERS",
"type": "input",
"name": "Steam folder paths",
"description": "Paths to folders containing 'steamapps' folders, separated by commas, first should have 'userdata' folder",
"default_value": "/home/<username>/.steam/steam/"
},
{
"id": "STEAM_USERDATA",
"type": "input",
"name": "Steam userdata folder name",
"description": "Steam userdata folder name (a number) of current user in primary Steam folder",
"default_value": ""
},
{
"id": "STEAM_API_KEY",
"type": "input",
"name": "Steam Web API key",
"description": "API key to use when fetching data (found at steamcommunity.com/dev/apikey)",
"default_value": ""
},
{
"id": "STEAM_USERNAME",
"type": "input",
"name": "Steam usermame",
"description": "Username to use when fetching data (found at store.steampowered.com/account)",
"default_value": ""
},
{
"id": "LANGUAGE",
"type": "select",
"name": "Language",
"description": "Language to display list items in, affects static titles and descriptions",
"default_value": "en-US",
"options": [
{ "value": "en-GB", "text": "English (United Kingdom)" },
{ "value": "en-US", "text": "English (United States)" }
]
},
{
"id": "MAX_ITEMS",
"type": "input",
"name": "Maximum list items",
"description": "Maximum number of list items to show for results",
"default_value": "5"
},
{
"id": "SHOW_UNINSTALLED",
"type": "select",
"name": "Show uninstalled apps",
"description": "Whether to show uninstalled apps in the list",
"default_value": "true",
"options": [
{ "value": "true", "text": "Yes" },
{ "value": "false", "text": "No" }
]
},
{
"id": "FRIEND_ACTION",
"type": "select",
"name": "Default friend action",
"description": "Default action to perform when a friend is selected",
"default_value": "chat",
"options": [
{ "value": "chat", "text": "Open chat window" },
{ "value": "profile", "text": "Open Steam profile" }
]
},
{
"id": "SHOW_REAL",
"type": "select",
"name": "Show friends' real info",
"description": "Whether to show friends' real names and locations in the list",
"default_value": "all",
"options": [
{ "value": "all", "text": "Yes" },
{ "value": "onlyNames", "text": "Only real names" },
{ "value": "onlyLocations", "text": "Only locations" },
{ "value": "none", "text": "No" }
]
},
{
"id": "SHOW_DEPENDENT",
"type": "select",
"name": "Show app and friend menus",
"description": "Whether to show extra navigation items for apps and friends",
"default_value": "all",
"options": [
{ "value": "all", "text": "Yes" },
{ "value": "onlyApps", "text": "Only owned apps" },
{ "value": "onlyFriends", "text": "Only friends" },
{ "value": "none", "text": "No" }
]
},
{
"id": "UPDATE_FILES",
"type": "input",
"name": "Time between file reads",
"description": "Time to wait before reading files on disk to update the cache",
"default_value": "1m"
},
{
"id": "UPDATE_STEAM_API",
"type": "input",
"name": "Time between Steam API calls",
"description": "Time to wait before querying the Steam API to update the cache",
"default_value": "1h"
},
{
"id": "APP_BLACKLIST",
"type": "input",
"name": "App blacklist",
"description": "IDs of apps to hide from the list, separated by commas",
"default_value": "228980"
},
{
"id": "FRIEND_BLACKLIST",
"type": "input",
"name": "Friend blacklist",
"description": "64-bit Steam IDs of friends to hide from the list, separated by commas",
"default_value": ""
}
]
}