Mark all your list as watched (js code)

you can use the code below if you want to mark all your list as watched. just 2 easy steps

1-right click on the page (your list page)
2-open the developer console, write "allow pasting " hit enter and paste the code below

const buttons = […document.querySelectorAll(‘a.watch:not(.selected)’)];
let i = 0;

function clickNext() {
if (i >= buttons.length) {
console.log(‘Tüm butonlara tıklandı.’);
return;
}
buttons[i].click();
console.log(Tıklandı: ${i+1}/${buttons.length});
i++;
setTimeout(clickNext, 2000); //
}

clickNext();

For those wondering (like me): this is probably Turkish for “All buttons clicked”?