Created
July 17, 2020 08:30
-
-
Save NuarkNoir/6d1f0612a45834286d4722354b9a7a12 to your computer and use it in GitHub Desktop.
Export list of tracks from vk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[...document.querySelectorAll(".audio_row__performer_title")] | |
.map(e => | |
[".audio_row__performers", ".audio_row__title_inner"] | |
.map(sel => e.querySelector(sel).textContent.trim()) | |
.join(" - ") | |
) | |
.join("\n"); | |
// You have to preload all your list | |
// Then just paste in console and execute |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment