Skip to content

Instantly share code, notes, and snippets.

View mahadevan's full-sized avatar
😎
Testing the Waters !

Mahadevan Iyer mahadevan

😎
Testing the Waters !
View GitHub Profile
@mahadevan
mahadevan / youtube_clean_watch_later_videos.js
Created February 22, 2021 16:14 — forked from qoomon/youtube_clean_watch_later_videos.js
Clean YouTube Watch Later Videos
// 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) => {