Skip to content

Instantly share code, notes, and snippets.

@bitnot
Last active September 8, 2018 04:34
Show Gist options
  • Select an option

  • Save bitnot/8b9fe99868f1583d1ba68aeb8e3277fa to your computer and use it in GitHub Desktop.

Select an option

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
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