-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplugin.json
More file actions
85 lines (85 loc) · 3.06 KB
/
plugin.json
File metadata and controls
85 lines (85 loc) · 3.06 KB
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
{
"id": "videofile",
"name": "Video File",
"description": "Mattermost web app plugin to have a native HTML5 video player for .mp4 urls",
"homepage_url": "https://github.com/Shadowsith/mattermost-plugin-videofile",
"support_url": "https://github.com/Shadowsith/mattermost-plugin-videofile/issues",
"release_notes_url": "https://github.com/Shadowsith/mattermost-plugin-videofile/releases/tag/1.1.2",
"version": "1.1.2",
"min_server_version": "6.2.1",
"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": "Video File settings",
"footer": "Please report problems with the plugin at: https://github.com/Shadowsith/mattermost-plugin-videourl/issues",
"settings": [
{
"key": "maxheight",
"display_name": "Video max height",
"type": "number",
"help_text": "Set max height of image or video element in chat",
"default": "350"
},
{
"key": "rendertimeout",
"display_name": "Render timeout",
"type": "number",
"help_text": "Set video render timeout in milliseconds (after file post is loaded by mattermost chat)",
"default": "20"
},
{
"key": "mp4",
"display_name": "Support MP4",
"type": "bool",
"help_text": "Support *.mp4 file urls",
"default": "true"
},
{
"key": "webm",
"display_name": "Support WEBM",
"type": "bool",
"help_text": "Support *.webm file urls.",
"default": "true"
},
{
"key": "mov",
"display_name": "Support MOV",
"type": "bool",
"help_text": "Support *.mov file urls. It is maybe not supported by your browser.",
"default": "true"
},
{
"key": "avi",
"display_name": "Support AVI",
"type": "bool",
"help_text": "Support *.avi file urls. It is maybe not supported by your browser.",
"default": "true"
},
{
"key": "wmv",
"display_name": "Support WMV",
"type": "bool",
"help_text": "Support *.wmv file urls. It is maybe not supported by your browser.",
"default": "true"
},
{
"key": "ogv",
"display_name": "Support OGV",
"type": "bool",
"help_text": "Support *.ogv file urls",
"default": "true"
}
]
},
"props": {
"maxHeight": 350
}
}