-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobro_plugin_config.json
105 lines (105 loc) · 2.29 KB
/
mobro_plugin_config.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
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
{
"name": "modbros_coingecko",
"displayName": "CoinGecko",
"author": "ModBros",
"description": null,
"assembly": "Plugin.CoinGecko.dll",
"localization": "Resources/Localization",
"settings": [
{
"type": "number",
"name": "update_frequency",
"label": "s_update_frequency_label",
"description": "s_update_frequency_desc",
"required": true,
"defaultValue": 10,
"min": 1
},
{
"type": "string",
"name": "coins",
"label": "s_coins_label",
"description": "s_coins_desc",
"defaultValue": "",
"required": false
},
{
"type": "select",
"name": "currency",
"label": "s_currency_label",
"description": "s_currency_desc",
"defaultValue": "usd",
"required": true,
"options": [
{
"label": "t_currency_eur_label",
"value": "eur"
},
{
"label": "t_currency_usd_label",
"value": "usd"
},
{
"label": "t_currency_aud_label",
"value": "aud"
},
{
"label": "t_currency_cad_label",
"value": "cad"
},
{
"label": "t_currency_chf_label",
"value": "chf"
},
{
"label": "t_currency_cny_label",
"value": "cny"
},
{
"label": "t_currency_czk_label",
"value": "czk"
},
{
"label": "t_currency_dkk_label",
"value": "dkk"
},
{
"label": "t_currency_gbp_label",
"value": "gbp"
},
{
"label": "t_currency_huf_label",
"value": "huf"
},
{
"label": "t_currency_inr_label",
"value": "inr"
},
{
"label": "t_currency_jpy_label",
"value": "jpy"
},
{
"label": "t_currency_nok_label",
"value": "nok"
},
{
"label": "t_currency_pln_label",
"value": "pln"
},
{
"label": "t_currency_sek_label",
"value": "sek"
},
{
"label": "t_currency_try_label",
"value": "try"
},
{
"label": "t_currency_uah_label",
"value": "uah"
}
]
}
]
}