- On your YouTube ‘Watch Later’ page…
- Right-click anywhere on the page and click on “Inspect”.
- In the DevTools window that appears, click on the Console tab.
- Copy and paste the following code into the Console:
setInterval(function () {
video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];
video.querySelector('#primary button[aria-label="Action menu"]').click();
var things = document.evaluate(
'//span[contains(text(),"Remove from")]',
document,
null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null
);
for (var i = 0; i < things.snapshotLength; i++)
{
things.snapshotItem(i).click();
}
}, 500);
from this GitHub repo