Last active
September 8, 2018 04:34
-
-
Save bitnot/8b9fe99868f1583d1ba68aeb8e3277fa to your computer and use it in GitHub Desktop.
VK.com playlist to txt. Open VK playlist in browser, scroll to the end of the page, run snippet in dev console, copy text, use http://spotlistr.herokuapp.com/#/search/textbox
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
| function row_to_line(r){ return r.innerText.split('\n').splice(1, 2).join(' - ') } | |
| let audios = Array.from(document.getElementsByClassName('audio_row')) | |
| let playlist = audios.map(row_to_line).join('\n') | |
| playlist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment