-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
54 lines (54 loc) · 1.91 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
54
{
"id": "pr0gramm",
"name": "Pr0gramm",
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
"homepage_url": "https://github.com/Shadowsith/mattermost-plugin-pr0gramm",
"support_url": "https://github.com/Shadowsith/mattermost-plugin-pr0gramm/issues",
"release_notes_url": "https://github.com/Shadowsith/mattermost-plugin-pr0gramm/releases/tag/1.2.2",
"version": "1.2.3",
"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": "Pr0gramm settings",
"footer": "Source code: https://github.com/Shadowsith/mattermost-plugin-pr0gramm",
"settings": [
{
"key": "cookie",
"display_name": "Session Cookie",
"type": "text",
"help_text": "Pr0gramm login session cookie",
"default": ""
},
{
"key": "maxheight",
"display_name": "img/video max height",
"type": "number",
"help_text": "Set max height of image or video element in chat",
"default": "400"
},
{
"key": "tags",
"display_name": "Toggle tags",
"type": "bool",
"help_text": "Enable or disable view of post tags",
"default": "true"
},
{
"key": "rating",
"display_name": "Toggle rating",
"type": "bool",
"help_text": "Enable or disable view of post rating",
"default": "true"
}
]
}
}