-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
57 lines (57 loc) · 2.6 KB
/
Copy pathplugin.json
File metadata and controls
57 lines (57 loc) · 2.6 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
{
"id": "com.zilosoft.quote-reply",
"name": "Zilosoft Quote Reply",
"description": "Reply to a specific Mattermost message or selected fragment with a visible quote preview.",
"homepage_url": "https://github.com/zilosoft/mattermost-reply",
"support_url": "https://github.com/zilosoft/mattermost-reply/issues",
"release_notes_url": "https://github.com/ZILosoft/mattermost-reply/releases",
"icon_path": "assets/starter-template-icon.svg",
"version": "1.0.0",
"min_server_version": "6.2.1",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Настройки Zilosoft Quote Reply",
"footer": "",
"settings": [
{
"key": "QuoteButtonLabel",
"display_name": "Подпись кнопки цитаты",
"type": "text",
"help_text": "Текст для кнопки/иконки цитаты рядом с сообщением.",
"default": "Quote"
},
{
"key": "SelectionButtonLabel",
"display_name": "Подпись popup-кнопки по выделению",
"type": "text",
"help_text": "Текст кнопки, которая появляется при выделении фрагмента сообщения.",
"default": "Quote"
},
{
"key": "EnableSelectionPopup",
"display_name": "Показывать popup по выделению",
"type": "bool",
"help_text": "Если включено, при выделении текста внутри сообщения будет появляться popup-кнопка цитаты.",
"default": true
},
{
"key": "LinkQuotesToSource",
"display_name": "Делать цитаты ссылками",
"type": "bool",
"help_text": "Если включено, текст цитаты после отправки станет ссылкой на исходное сообщение.",
"default": true
}
]
}
}