Skip to content

Instantly share code, notes, and snippets.

View rustcohlnikov's full-sized avatar
💛
inspired

Nazym Jumadilova rustcohlnikov

💛
inspired
View GitHub Profile
@rustcohlnikov
rustcohlnikov / download_VK_music_titles.js
Created May 2, 2020 11:37
Download VK music titles as text file
// 1. Manually scroll down and load all the music on your library
// 2. Paste code into console and hit Enter
// 3. Type `getMusic()`
// 4. `music.txt` files is downloaded
function getMusic() {
let songs = [];
let nodes = document.querySelectorAll('div.audio_row_content');
for (let index = 0; index < nodes.length; index++) {