-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
27 lines (27 loc) · 970 Bytes
/
app.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
{
"name": "Plex Slack Music Status",
"description": "Use Plex webhooks to keep your status up to date with your playback",
"repository": "https://github.com/plexinc/plex-slack-music-notifications",
"logo": "https://www.plex.tv/wp-content/themes/plex/img/[email protected]",
"keywords": ["node"],
"addons": [
],
"env": {
"TOKEN": {
"description": "The Slack legacy token (generate on https://api.slack.com/custom-integrations/legacy-tokens).",
"required": false
},
"PAUSE_EMOJI": {
"description": "Emoji to use when paused if none provided in querystring.",
"required": false
},
"PLAY_EMOJI": {
"description": "Emoji to use when playing if none provided in querystring.",
"required": false
},
"PLAYER": {
"description": "The identifier of the Plex player to watch. If not provided, nor in the querystring, any player playing music will be accepted.",
"required": false
}
}
}