xxxxxxxxxx
1. Go to Watch Later playlist page
3. Open console by CTRL+SHIFT+J or right click to inspect then goto console tab
4. run this code
```javascript
setInterval(function () {
document.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();
}
}, 1000);
```