-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathapp.manifest.json
More file actions
65 lines (45 loc) · 1.2 KB
/
app.manifest.json
File metadata and controls
65 lines (45 loc) · 1.2 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
{
"display_information": {
"name": "SlackONOS",
"description": "Democratic music bot for controlling Sonos speakers with community voting",
"background_color": "#667eea",
"long_description": "SlackONOS lets teams control Sonos speakers with Spotify integration. Features community voting, democratic skip tracking, and seamless Slack integration. Perfect for offices, shared spaces, and music lovers who want fair queue control."
},
"features": {
"bot_user": {
"display_name": "SlackONOS",
"always_online": true
},
"socket_mode": true
},
"oauth_config": {
"redirect_urls": [
"https://your-domain.com/slack/oauth/callback"
],
"scopes": {
"bot": [
"app_mentions:read",
"chat:write",
"channels:read",
"channels:history",
"groups:read",
"groups:history"
]
}
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention",
"message.channels",
"message.groups"
]
},
"interactivity": {
"is_enabled": false
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}