Skip to content

Instantly share code, notes, and snippets.

@revenkroz
Last active February 8, 2021 16:35
Show Gist options
  • Save revenkroz/7a59d7421ee64c9c9fa19a58f628e59f to your computer and use it in GitHub Desktop.
Save revenkroz/7a59d7421ee64c9c9fa19a58f628e59f to your computer and use it in GitHub Desktop.
Список всей музыки в ВК
var lines = '';
var songs = document.querySelectorAll('div[class^="audio_row__title"]');
var artists = document.querySelectorAll('div[class^="audio_row__performers"]');
for(var i=0; i < songs.length; i++) {
lines += artists[i].innerText + " — " + songs[i].innerText + "\n";
}
copy(lines);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment