I was thinking it would be nice to keep different lists in Netflix rather than one ever-growing list. I might be able to achieve that with different viewer profiles, but I figured I would experiment keeping lists on my own site instead. I wrote up some quick javascript in the dev console to extract the links and titles as a starting point:
titles = document.querySelectorAll('.title'); for (var i = 0; i < titles.length; i++) { a = titles[i].querySelector('a'); if ( a ) { console.log('<li> <a href="https://netflix.com' + a.getAttribute('href') + '">' + titles[i].textContent + '</a> </li>'); } }