43 lines
1.3 kB
1
{
2
"$schema": "https://moonlight-mod.github.io/manifest.schema.json",
3
"id": "moonbase",
4
"apiLevel": 2,
5
"meta": {
6
"name": "Moonbase",
7
"tagline": "The official settings UI for moonlight",
8
"authors": ["Cynosphere", "NotNite", "redstonekasi"]
9
},
10
"dependencies": ["spacepack", "settings", "common", "notices"],
11
"settings": {
12
"sections": {
13
"advice": "reload",
14
"displayName": "Split into sections",
15
"description": "Show the Moonbase tabs as separate sections",
16
"type": "boolean"
17
},
18
"saveFilter": {
19
"advice": "none",
20
"displayName": "Persist filter",
21
"description": "Save extension filter in config",
22
"type": "boolean"
23
},
24
"updateChecking": {
25
"advice": "none",
26
"displayName": "Automatic update checking",
27
"description": "Checks for updates to moonlight",
28
"type": "boolean",
29
"default": true
30
},
31
"updateBanner": {
32
"advice": "none",
33
"displayName": "Show update banner",
34
"description": "Shows a banner for moonlight and extension updates",
35
"type": "boolean",
36
"default": true
37
}
38
},
39
"cors": [
40
"https://github.com/moonlight-mod/moonlight/releases/download/",
41
"https://objects.githubusercontent.com/github-production-release-asset-"
42
]
43
}
44