Skip to content

Instantly share code, notes, and snippets.

@NuarkNoir
Created July 17, 2020 08:30
Show Gist options
  • Save NuarkNoir/6d1f0612a45834286d4722354b9a7a12 to your computer and use it in GitHub Desktop.
Save NuarkNoir/6d1f0612a45834286d4722354b9a7a12 to your computer and use it in GitHub Desktop.
Export list of tracks from vk
[...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