Skip to content

Instantly share code, notes, and snippets.

@daltonmenezes
Last active May 11, 2018 04:53
Show Gist options
  • Save daltonmenezes/8f29628a699fc7c8389a0cac27f87935 to your computer and use it in GitHub Desktop.
Save daltonmenezes/8f29628a699fc7c8389a0cac27f87935 to your computer and use it in GitHub Desktop.
Lists My List from Netflix in text format and places it on the clipboard to share it.
list = ''
document.querySelectorAll('.video-preload-title-label').forEach(name => list += `${name.textContent} \n`)
copy(list)
console.log(list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment