-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
80 lines (80 loc) · 2.33 KB
/
manifest.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
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
{
"display_information": {
"name": "SlackL",
"description": "DeepL Translations For Slack",
"background_color": "#142230"
},
"features": {
"bot_user": {
"display_name": "SlackL",
"always_online": false
},
"shortcuts": [
{
"name": "Translate Message",
"type": "message",
"callback_id": "translate_message_sk",
"description": "Translate Message"
}
],
"slash_commands": [
{
"command": "/ping",
"url": "https://your-domain.com:port",
"description": "Test Translation Bot",
"should_escape": false
},
{
"command": "/translate",
"url": "https://your-domain.com:port",
"description": "Quickly Translate Any Text From UI",
"should_escape": false
},
{
"command": "/translate-channel",
"url": "https://your-domain.com:port",
"description": "Automatically Translate Messages Sent to Channel",
"should_escape": false
}
]
},
"oauth_config": {
"scopes": {
"user": [
"chat:write"
],
"bot": [
"app_mentions:read",
"assistant:write",
"bookmarks:read",
"channels:history",
"channels:join",
"channels:read",
"chat:write",
"chat:write.customize",
"chat:write.public",
"commands",
"reactions:read",
"reactions:write",
"users:read",
"users:read.email"
]
}
},
"settings": {
"event_subscriptions": {
"request_url": "https://your-domain.com:port",
"bot_events": [
"app_mention",
"message.channels"
]
},
"interactivity": {
"is_enabled": true,
"request_url": "https://your-domain.com:port"
},
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": false
}
}