generated from mattermost/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
43 lines (43 loc) · 1.39 KB
/
plugin.json
File metadata and controls
43 lines (43 loc) · 1.39 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
{
"id": "jp.shipmate.mattermost-translate",
"name": "Mattermost Translate",
"description": "A plugin to translate messages in Mattermost using google translate API.",
"homepage_url": "https://github.com/petrichor-japan/mattermost-translation",
"support_url": "https://github.com/petrichor-japan/mattermost-translation/issues",
"icon_path": "assets/starter-template-icon.svg",
"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": "",
"footer": "",
"settings": [
{
"key": "GoogleAPIKey",
"display_name": "Google Translate API Key",
"type": "text",
"help_text": "Server-side API key for Google Cloud Translation API v2.",
"placeholder": "",
"default": ""
},
{
"key": "DefaultTargetLang",
"display_name": "Default Target Language",
"type": "text",
"help_text": "Default ISO language code to translate into (e.g. ja, en, es).",
"placeholder": "ja",
"default": "ja"
}
]
}
}