Bsanist

Netflix: Topmost 'Continue Watching'

Aug 4th, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * Netflix move 'Continue Watching' to first row
  3.  *
  4.  * https://chrome.google.com/webstore/detail/netflix-topmost-continue/oheedalhfdnpheinnongdiakmophclgh
  5.  */
  6. setInterval(function () {
  7.     var container = document.getElementsByClassName('lolomo')[0];
  8.     if (!container) { return; }
  9.     var rows = container.getElementsByClassName('lolomoRow_title_card');
  10.  
  11.     for (var i = 0; i < rows.length; i++) {
  12.         if (rows[i].getAttribute('data-list-context') == 'continueWatching') {
  13.             if (i) {
  14.                 container.insertBefore(rows[i], rows[0]);
  15.             }
  16.             return;
  17.         }
  18.     }
  19. }, 500);
Add Comment
Please, Sign In to add comment