35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"name": "discord-rich-presence",
|
||
|
|
"author": "Navidrome Team",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Discord Rich Presence integration for Navidrome",
|
||
|
|
"website": "https://github.com/navidrome/navidrome/tree/master/plugins/examples/discord-rich-presence",
|
||
|
|
"capabilities": ["Scrobbler", "SchedulerCallback", "WebSocketCallback"],
|
||
|
|
"permissions": {
|
||
|
|
"http": {
|
||
|
|
"reason": "To communicate with Discord API for gateway discovery and image uploads",
|
||
|
|
"allowedUrls": {
|
||
|
|
"https://discord.com/api/*": ["GET", "POST"]
|
||
|
|
},
|
||
|
|
"allowLocalNetwork": false
|
||
|
|
},
|
||
|
|
"websocket": {
|
||
|
|
"reason": "To maintain real-time connection with Discord gateway",
|
||
|
|
"allowedUrls": ["wss://gateway.discord.gg"],
|
||
|
|
"allowLocalNetwork": false
|
||
|
|
},
|
||
|
|
"config": {
|
||
|
|
"reason": "To access plugin configuration (client ID and user tokens)"
|
||
|
|
},
|
||
|
|
"cache": {
|
||
|
|
"reason": "To store connection state and sequence numbers"
|
||
|
|
},
|
||
|
|
"scheduler": {
|
||
|
|
"reason": "To schedule heartbeat messages and activity clearing"
|
||
|
|
},
|
||
|
|
"artwork": {
|
||
|
|
"reason": "To get track artwork URLs for rich presence display"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|