Skip to content

Instantly share code, notes, and snippets.

@deansimcox
deansimcox / yt-remove-watch-later.js
Created August 7, 2023 02:22
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 = 20;
async function doThing(vidArray) {
for (const vid of vidArray) {
vid.click();