27 lines
816 B
1
{
2
"$schema": "https://moonlight-mod.github.io/manifest.schema.json",
3
"id": "quietLoggers",
4
"apiLevel": 2,
5
"meta": {
6
"name": "Quiet Loggers",
7
"tagline": "Quiet errors on startup, and disable unnecesary loggers",
8
"authors": ["Cynosphere", "NotNite", "adryd"],
9
"tags": ["development"]
10
},
11
"settings": {
12
"xssDefensesOnly": {
13
"advice": "reload",
14
"displayName": "Only hide self-XSS",
15
"description": "Only disable self XSS prevention log",
16
"type": "boolean",
17
"default": false
18
},
19
"silenceDiscordLogger": {
20
"advice": "reload",
21
"displayName": "Silence Discord logger",
22
"description": "Hides all messages from Discord's logger (the logs that start with purple text in brackets)",
23
"type": "boolean",
24
"default": false
25
}
26
}
27
}
28