-
Notifications
You must be signed in to change notification settings - Fork 21
/
plugin.json
53 lines (53 loc) · 1.76 KB
/
plugin.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
{
"id": "com.mattermost.voice",
"name": "Voice",
"description": "Mattermost plugin to enable voice messaging.",
"homepage_url": "https://github.com/streamer45/mattermost-plugin-voice",
"support_url": "https://github.com/streamer45/mattermost-plugin-voice/issues",
"version": "0.3.0",
"min_server_version": "6.3.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "VoiceMaxDuration",
"display_name": "Max Duration",
"type": "number",
"help_text": "Max duration allowed (in seconds) for voice messages.",
"default": 300
},
{
"key": "VoiceAudioBitrate",
"display_name": "Audio Quality",
"type": "dropdown",
"help_text": "Audio quality of voice messages. This setting affects recording size.",
"default": "64",
"options": [
{
"display_name": "High (128 kbps)",
"value": "128"
},
{
"display_name": "Normal (64 kbps)",
"value": "64"
},
{
"display_name": "Low (48 kbps)",
"value": "48"
}
]
}
]
}
}