-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathplugin.json
More file actions
83 lines (83 loc) · 3.05 KB
/
plugin.json
File metadata and controls
83 lines (83 loc) · 3.05 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
{
"name": "Freemium",
"id": "freemium",
"description": "Injects custom code to remove native enterprise branding and add other QOL improvements.",
"homepage_url": "https://github.com/dy0gu/mattermost-plugin-freemium",
"support_url": "https://github.com/dy0gu/mattermost-plugin-freemium/issues",
"icon_path": "resources/icon.svg",
"min_server_version": "9.11.0",
"server": {
"executables": {
"linux-amd64": "api/plugin-linux-amd64",
"linux-arm64": "api/plugin-linux-arm64",
"darwin-amd64": "api/plugin-darwin-amd64",
"darwin-arm64": "api/plugin-darwin-arm64",
"windows-amd64": "api/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "web/plugin-umd.js"
},
"settings_schema": {
"header": "Configure which modifications are applied. Changes take effect on the next page load, so make sure to refresh your tab after saving.",
"footer": "",
"settings": [
{
"key": "HideEditionBadge",
"display_name": "Hide Edition Badge:",
"type": "bool",
"default": true,
"help_text": "Hide just the edition badge text in the global header, while keeping the Mattermost logo and name visible. If you're on a paid edition, this should let you keep your organization's name visible, in case you customized the header."
},
{
"key": "HideHeaderBranding",
"display_name": "Hide Header Branding:",
"type": "bool",
"default": true,
"help_text": "Hide the entire Mattermost branding in the global header (logo, name, and badge). Overrides the badge-only setting when enabled."
},
{
"key": "HideLoginBranding",
"display_name": "Hide Login Branding:",
"type": "bool",
"default": true,
"help_text": "Hide Mattermost branding with the free badge on the login page."
},
{
"key": "HideTrialPrompts",
"display_name": "Hide Trial Prompts:",
"type": "bool",
"default": true,
"help_text": "Hide trial and upgrade prompts including the start trial button, upgrade dialogs, view plans button, and admin console banner."
},
{
"key": "HideFooterCopyright",
"display_name": "Hide Footer Copyright:",
"type": "bool",
"default": true,
"help_text": "Hide the footer copyright text."
},
{
"key": "HideUserPaidFeatures",
"display_name": "Hide User Paid Features:",
"type": "bool",
"default": true,
"help_text": "Hide references to paid features in user facing parts of the app. Removes the Groups menu item in the product switcher and the premium keyword settings section."
},
{
"key": "HideAdminPaidFeatures",
"display_name": "Hide Admin Paid Features:",
"type": "bool",
"default": false,
"help_text": "Hide paid feature entries in the admin system console sidebar. This includes any setting with the key icon on the right side of the entry."
},
{
"key": "EnableBoardsFixes",
"display_name": "Enable Boards Fixes:",
"type": "bool",
"default": true,
"help_text": "Enable layout fixes for the Boards plugin, including adding a button to go back to Mattermost chat, which is missing in the original mobile view."
}
]
}
}