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
// This script will remove all videos from watch later list | |
// | |
// Usage | |
// | |
// #1 go to https://www.youtube.com/playlist?list=WL | |
// #2 run following script | |
(async function() { | |
const sleep = (timeout) => new Promise(res => setTimeout(res, timeout)) | |
const untilDefined = async (factory, timeout = 100) => { |