This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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(); |