-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
43 lines (43 loc) · 1.5 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
{
"id": "bitchute",
"name": "Bitchute",
"description": "Mattermost web app plugin to have an embedded videoplayer for Bitchute urls",
"homepage_url": "https://github.com/Shadowsith/mattermost-plugin-bitchute",
"support_url": "https://github.com/Shadowsith/mattermost-plugin-bitchute/issues",
"release_notes_url": "https://github.com/Shadowsith/mattermost-plugin-bitchute/releases/tag/1.1.0",
"version": "1.1.0",
"server": {
"executables": {
"linux-amd64": "server/plugin-linux-amd64",
"darwin-amd64": "server/plugin-darwin-amd64",
"windows-amd64": "server/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "client/main.js"
},
"settings_schema": {
"header": "bitchute settings",
"footer": "Please report problems with the plugin at: https://github.com/Shadowsith/mattermost-plugin-bitchute/issues",
"settings": [
{
"key": "height",
"display_name": "Video height",
"type": "number",
"help_text": "Set height of video element in chat",
"default": "340"
},
{
"key": "width",
"display_name": "Video width",
"type": "number",
"help_text": "Set width of video element in chat",
"default": "600"
}
]
},
"props": {
"iframeWidth": 600,
"iframeHeight": 340
}
}