please rework this code to add all subscription vids into 'watch later' this somewhat works but not quite. This would be veyr helpful.
code:
javascript:
var x = document.getElementsByClassName("contains-addto ");
for (var k = x.length - 1; k >= 0; k--) {
if (!x[k].classList.contains("watched")) {
x[k].getElementsByClassName("addto-watch-later-button")[0].click();
}
}
please rework this code to add all subscription vids into 'watch later' this somewhat works but not quite. This would be veyr helpful.
code:
javascript: var x = document.getElementsByClassName("contains-addto "); for (var k = x.length - 1; k >= 0; k--) { if (!x[k].classList.contains("watched")) { x[k].getElementsByClassName("addto-watch-later-button")[0].click(); } }
thanks th86