-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.json
52 lines (52 loc) · 1.35 KB
/
services.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
[
{
"id": "pandora",
"name": "Pandora",
"url": "http://pandora.com/",
"selectors": {
"drag": "#brandingBar",
"is_playing": "div.playButton[style*='display: none']",
"play": "div.playButton > a",
"pause": "div.pauseButton > a",
"next": "div.skipButton > a",
"track": {
"title": ".playerBarSong",
"artist": ".playerBarArtist",
"album": ".playerBarAlbum",
"art": ".playerBarArt"
}
}
},
{
"id": "google_music",
"name": "Google Music",
"url": "https://play.google.com/music/listen",
"selectors": {
"drag": "paper-toolbar",
"is_playing": "#player-bar-play-pause.playing",
"play": "#player-bar-play-pause",
"next": "#player-bar-forward",
"track": {
"title": "#currently-playing-title",
"artist": "#player-artist",
"album": ".player-album",
"art": "#playerBarArt"
}
}
},
{
"id": "soundcloud",
"name": "SoundCloud",
"url": "https://soundcloud.com/stream",
"selectors": {
"drag": "header",
"is_playing": ".playControl.playing",
"play": ".playControl",
"next": "button.skipControl.skipControl__next",
"track": {
"title": "a.playbackSoundBadge__title.sc-truncate > span:nth-child(2)",
"art": ".playControls .image span"
}
}
}
]