Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save leoossa/ec4cf0a6c8a4154ebf2e278c890af9ab to your computer and use it in GitHub Desktop.
Save leoossa/ec4cf0a6c8a4154ebf2e278c890af9ab to your computer and use it in GitHub Desktop.
//Now with less jquery
//1) go to your my-list page, and scroll to the bottom to make sure it's all loaded:
//http://www.netflix.com/browse/my-list
//2) Next, paste this in your developer tools console and hit enter:
[...document.querySelectorAll('.slider [aria-label]')].map(ele => ele.getAttribute('aria-label'))
//or use this to copy the list to your clipboard:
copy([...document.querySelectorAll('.slider [aria-label]')].map(ele => ele.getAttribute('aria-label')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment