-
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
-
Next, paste this in your developer tools console and hit enter:
// JSON version (function() { var list = [] document.querySelectorAll('.title-card a[aria-label]').forEach( function(item) { try { list.push({ name: item.getAttribute('aria-label'), link: "https://www.netflix.com" + item.getAttribute("href").split("?")[0] }) } catch (err) { console.error("ERROR: Ignored err", err, item) } }) return JSON.stringify(list); }());
-
Bonus - copy and paste the result to JSON to Markdown table for nice output
-
-
Save jerkovicl/b00234fe847d0ec258d58a297d417b56 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.