🌐
Quora
quora.com › How-can-I-delete-all-YouTube-watch-later-videos-at-once
How to delete all YouTube 'watch later' videos at once - Quora
Two reliable methods to clear your entire YouTube “Watch later” list at once: using YouTube’s web interface (fast, official) and using a browser console script (works when many videos make manual clicks impractical).
🌐
Alphr
alphr.com › home › how to delete all watch later videos on youtube
How to Delete All Watch Later Videos on YouTube
January 7, 2022 - Immediately upon pressing Enter, you should see the videos start to disappear. The process isn’t lightning-fast, but it’s the easiest way of removing all Watch Later Videos in one go. Depending on how many videos you’re trying to remove, change the number at the end of the script to a lower numeral.
Discussions

How to remove all videos from Watch Later?

Navigate to the Watch Later playlist page

Disclaimer: You really shouldn't run random code provided by randoms on the internet. You should probably never open your browser's console unless you know why you're doing it. I take no responsibility if this doesn't work, etc, etc.

If you understand that and also understand that I might be a lying loser on the internet trolling you (I'm not, but could easily be), open up your browser's console (ctrl+shif+j in chrome, ctrl+shift+k in firefox) and paste the following into said console. Again I can't stress enough how silly it is to run random bits of code if you don't know what it's doing

var el = document.getElementsByClassName('pl-video-edit-remove');
for (var i=0;i<el.length; i++) {
    el[i].click();
}

To sum up what it does, it finds every button with the HTML class "pl-video-edit-remove" - the button to remove the video from the playlist. It loops through all of them, "clicking" on each. This nukes playlists for sure. I have no idea what effect it'll have on other pages. Be careful where you run it.

If you get what it's doing and can see how it's doing it, hit enter

Wait while it loops through clicking on the "Remove from playlist" button for each vid. I dunno if that many videos causes YouTube to paginate or anything so you may have to do it a few times to finish him off.

Wait a few seconds before navigating away when it's done too, it takes a moment or two to submit all of the requests :)

I know I'm repeating myself but please, please, please - don't run random bits of code in your console. Lets just say this is here for theory's sake (although I tested it a few times myself and it worked perfectly)

If you're still unsure as to what to do or what this is doing I would highly recommend just sucking it up and clicking remove on each video manually

More on reddit.com
🌐 r/youtube
20
27
October 16, 2014
How to remove videos from Watch Later Playlist
dude thank you so much for this. I've been trying to get this done for the last 5 years. More on reddit.com
🌐 r/youtube
16
45
August 9, 2023
How to clear watch later list in one go??? - YouTube Community
Skip to main content · YouTube Help · Sign in · Google Help · Help Center · Fix a problem · Watch videos · Manage your account & settings · Supervised experiences on YouTube · YouTube Premium More on support.google.com
🌐 support.google.com
October 16, 2024
How do I bulk remove all of the videos from my watch later list on YouTube? - Web Applications Stack Exchange
I already have 200+ videos at watch later list on YouTube. So, I stopped adding videos to my watch later list to avoid messing it even more. Now I simply want to remove them all so I can start fresh More on webapps.stackexchange.com
🌐 webapps.stackexchange.com
May 19, 2015
🌐
GitHub
gist.github.com › astamicu › eb351ce10451f1a51b71a1287d36880f
Script to remove all videos from Youtube Watch Later playlist · GitHub
Script to remove all videos from Youtube Watch Later playlist - Remove videos from Youtube Watch Later playlist.md
🌐
iDownloadBlog
idownloadblog.com › home › how to remove all videos from your youtube watch later
How to remove all videos from your YouTube Watch Later
December 2, 2025 - To do that, visit the Watch later section in the YouTube app or website, then click the three dots icon, and select Remove watched videos. This will significantly reduce the number of videos in your Watch Later playlist, helping clean it up ...
🌐
TL Dev Tech
tldevtech.com › home › online tools › how to bulk delete all youtube watch later videos
How to Bulk Delete All Youtube Watch Later Videos | TL Dev Tech
May 27, 2025 - cleanup_id = setInterval(function() { document.querySelector(‘#primary button[aria-label=”Action menu”]’).click(); var things = document.evaluate(‘//span[contains(text(),”Watch later”)]’,document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null); for (var i = 0; i = p_max_videos_to_delete) { clearInterval(cleanup_id); } ... Thank you so much, i couldn’t find any youtube videos that could help me, I tried your first script and it worked! I used this method on Google Chrome on a Macbook Air on Nov 2022.
🌐
How-To Geek
howtogeek.com › home › streaming › how to clear "watch later" on youtube
How to Clear "Watch Later" on YouTube
August 29, 2021 - In the "Remove Watched Videos" prompt, tap "Remove." And your "Watch Later" list is now cleared! Are you looking to clear your YouTube watch history as well? There's a way to do that, too.
🌐
YouTube
youtube.com › watch
HOW TO DELETE YOUTUBE WATCH LATER VIDEOS at Once 2022 - YouTube
HOW TO DELETE YOU TUBE WATCH LATER VIDEOS at Once 2022Download the youtube watch later playlist video delete chrome extension from below link https://chrome....
Published   March 4, 2022
🌐
The Windows Club
thewindowsclub.com › the windows club › general › how to delete all watch later videos on youtube
How to delete all Watch Later videos on YouTube
February 3, 2026 - The Watch Later tab lists the videos you have saved to watch later. Learn how you can remove or clear all Watch Later videos on YouTube.
🌐
Reddit
reddit.com › r/youtube › how to remove all videos from watch later?
r/youtube on Reddit: How to remove all videos from Watch Later?
October 16, 2014 -

Um, I have a YouTube hoarding problem. I have 2,335 videos in my Watch Later list.

I'm never going to watch them all. On the web and official iOS client it seems I can only remove videos one at a time. I can't do that for all 2,335!

I was wondering if there were any tools or apps out there I could use that would allow me to just wipe the list clean?

Top answer
1 of 5
16

Navigate to the Watch Later playlist page

Disclaimer: You really shouldn't run random code provided by randoms on the internet. You should probably never open your browser's console unless you know why you're doing it. I take no responsibility if this doesn't work, etc, etc.

If you understand that and also understand that I might be a lying loser on the internet trolling you (I'm not, but could easily be), open up your browser's console (ctrl+shif+j in chrome, ctrl+shift+k in firefox) and paste the following into said console. Again I can't stress enough how silly it is to run random bits of code if you don't know what it's doing

var el = document.getElementsByClassName('pl-video-edit-remove');
for (var i=0;i<el.length; i++) {
    el[i].click();
}

To sum up what it does, it finds every button with the HTML class "pl-video-edit-remove" - the button to remove the video from the playlist. It loops through all of them, "clicking" on each. This nukes playlists for sure. I have no idea what effect it'll have on other pages. Be careful where you run it.

If you get what it's doing and can see how it's doing it, hit enter

Wait while it loops through clicking on the "Remove from playlist" button for each vid. I dunno if that many videos causes YouTube to paginate or anything so you may have to do it a few times to finish him off.

Wait a few seconds before navigating away when it's done too, it takes a moment or two to submit all of the requests :)

I know I'm repeating myself but please, please, please - don't run random bits of code in your console. Lets just say this is here for theory's sake (although I tested it a few times myself and it worked perfectly)

If you're still unsure as to what to do or what this is doing I would highly recommend just sucking it up and clicking remove on each video manually

2 of 5
15

I just found out a method that is much easier and works 100% of the time! In your browser go to your Watch Later playlist and click the menu (the three dots in the right top corner) and add to playlist. Create a new playlist and name it someting easy(I named it WL for example). Now go to that playlist and go to the same menu and instead of adding it to a playlist uncheck Watch Later. Now your Watch Later playlist is cleared and you can delete the temorary playlist you just created. Hope this helps some people!

Find elsewhere
🌐
Reddit
reddit.com › r/youtube › how to remove videos from watch later playlist
r/youtube on Reddit: How to remove videos from Watch Later Playlist
August 9, 2023 -

I had the problem where my Watch Later playlist was full and I couldn't add any more videos to it.

There is to this day still no way to mass remove videos from the Watch Later playlist.

They only way to remove videos from it is to tap every video on the playlist, one by one, press remove and go to the next one.

Mind you I had 5000 videos in my Watch Later playlist, meaning that I had to press 10k times on youtube to remove every video from the playlist.

The Remove All Watched Videos option did nothing. didn't even remove the watched videos and even if it did I had maybe around 3000 videos that hadn't been marked Watched.

Solution:

So since YouTube doesn't want to provide with a solution to this we have to use a script that does it for us.

The script does the same as you would to remove videos, the difference is it does not mind clicking the same buttons over and over again until every video is removed.

The script is this.

setInterval(function() {
	document.querySelector('#contents button#button').click();
	var things = document.evaluate('//span[contains(text(),"Watch later")]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);
		for (var i = 0; i < things.snapshotLength; i++) {
		    things.snapshotItem(i).click();
		}		
}, 1000);

Step 1: Copy the script.

Step 2: Go to your Watch Later playlist or click this link: https://www.youtube.com/playlist?list=WL

Step 3: Press F12 to the open developer’s console.

Step 4: Paste the script into the console and press Enter.

If you have an Adblocker you need to disable it first for this script to work.

After hitting enter the script should begin to remove the videos one by one.

It takes some time, but it is automatic.

Hope it helps.

Edit: Typos

🌐
Chrome Web Store
chromewebstore.google.com › detail › yt-watch-later-assist › deafalnegnfhjhejolidiobnapigcfpd
YT Watch Later Assist - Chrome Web Store
Removes all videos from the YouTube Watch Later playlist. ... Average rating 3.9 out of 5 stars. Learn more about results and reviews. A lightweight tool to help clean up your YouTube Watch Later playlist · YouTube Watch Later Quick Delete and Homepage Thumbnail Button4.0
🌐
YouTube
youtube.com › watch
Delete All Watch Later Videos from YouTube | Remove All Videos in 1 Click | No Coding - 2025 - YouTube
Delete watch later videos YouTubeIn this video we have shown you how to Delete all videos from Watch Later on YouTube in 1 Click. Easiest method to Remove al...
Published   October 2, 2021
🌐
Google Support
support.google.com › youtube › thread › 302398364 › how-to-clear-watch-later-list-in-one-go
How to clear watch later list in one go??? - YouTube Community
October 16, 2024 - Skip to main content · YouTube Help · Sign in · Google Help · Help Center · Fix a problem · Watch videos · Manage your account & settings · Supervised experiences on YouTube · YouTube Premium
🌐
YouTube
youtube.com › watch
How To Delete All Watch Later Videos on YouTube (Step By Step) - YouTube
In this video, I show you how to delete all watch later videos on YouTube. Did this video help? Comment below and let me know. Thanks!-EARNINGS DISCLAIMER:Th...
Published   January 11, 2025
🌐
YouTube
youtube.com › watch
Delete ALL Watch Later Videos - Works On New YouTube Platform!! | Handy Hudsonite - YouTube
How can you delete all of your YouTube Watch Later videos at once on YouTube's new platform? I'll show you a simple script that deletes all your Watch Later ...
Published   December 2, 2020
🌐
YouTube
youtube.com › watch
How to Delete ALL Watch Later Videos from YouTube! - YouTube
YouTube is our main destination for entertainment, whether you’re watching short comedy sketches, daily vlogs, or multi-hour podcasts. If you’re looking for ...
Published   February 15, 2019
🌐
Wondershare
filmora.wondershare.com › home › resource center › youtube video tips
How to Clear YouTube Watch Later Playlist - Filmora
December 10, 2025 - Step 4.Finally, to remove the unwatched videos, hover over a video and click the Three Dots. Select the "Remove from Watch Later" option to delete the video.
🌐
MiniTool
youtubedownload.minitool.com › home › how to delete videos from youtube watch later playlist?
How to Delete Videos from YouTube Watch Later Playlist?
November 28, 2024 - Step 2: The videos in the playlist will show up on the right panel. Then, find the video you want to remove from the list and hover it. After that, click the 3-dot next to it and select Remove from Watch later.
🌐
Google Support
support.google.com › youtube › answer › 56101
Add & remove videos from Watch later - Android - YouTube Help
By adding videos to your Watch later playlist, you can easily find them whenever you want. Can't watch now? Add videos to the Watch Later playlist