-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
42 lines (42 loc) · 1.45 KB
/
Copy pathplugin.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "phlix-plugin-lastfm",
"version": "1.2.0",
"phlix_min_server_version": "1.2.0",
"type": "scrobbler",
"entry": "Phlix\\Plugins\\Scrobbler\\Lastfm\\LastfmPlugin",
"events": [
"phlix.playback.started",
"phlix.playback.stopped"
],
"settings": {
"enabled": {
"type": "boolean",
"default": false,
"required": false,
"tier": "standard",
"label": "Enable scrobbling",
"description": "Master on/off for Last.fm scrobbling. Optional; default off."
},
"api_key": {
"type": "string",
"default": "",
"required": true,
"tier": "standard",
"label": "Last.fm API Key",
"description": "Your Last.fm API key. Create a free API account to get one.",
"link": "https://www.last.fm/api/account/create",
"link_text": "Create a Last.fm API account"
},
"shared_secret": {
"type": "string",
"default": "",
"secret": true,
"required": true,
"tier": "standard",
"label": "Last.fm Shared Secret",
"description": "The \"Shared secret\" shown next to your API key on your Last.fm API accounts page. Used to sign authenticated requests.",
"link": "https://www.last.fm/api/accounts",
"link_text": "Your Last.fm API accounts"
}
}
}