Skip to content

Instantly share code, notes, and snippets.

@deansimcox
deansimcox / yt-remove-watch-later.js
Last active August 6, 2024 08:16
Some JS that will go through your Watch Later playlist on Youtube, and remove items sequentially
/**
* Works on your watch later playlist `/playlist?list=WL`
* Update NUMBER_OF_LATEST_VIDEOS_TO_KEEP if you want to keep more/less than the 20 most recent videos
*/
const NUMBER_OF_LATEST_VIDEOS_TO_KEEP = 60;
async function doThing(vidArray) {
for (const vid of vidArray) {
vid.click();