-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
32 lines (28 loc) · 1.14 KB
/
main.js
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
function getList() {
let _result = {} || undefined;
let _htmlList = document.querySelectorAll("ytmusic-responsive-list-item-renderer[page-type]");
let _info = document.querySelectorAll("yt-formatted-string.ytmusic-responsive-header-renderer");
_result.artist = _info[0].textContent;
_result.album = _info[1].textContent;
let _tracks = [];
for (let index = 0; index < _htmlList.length; index++) {
let _track = _htmlList[index].querySelector("a").textContent;
let _score = _htmlList[index].querySelector("yt-button-shape[aria-pressed='true']");
if (_score != null) {
if (_score.id.includes("dislike"))
_score = 0
else
_score = 1;
} else {
let _time = _htmlList[index].querySelectorAll("yt-formatted-string[ellipsis-truncate-styling][ellipsis-truncate]")[2].textContent.split(":");
if (_time[0] == "0")
_score = -1;
else
_score = 0.5;
}
_tracks.push({ name: _track, score: _score });
}
_result.tracks = _tracks;
console.log(_result);
return _result;
}