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 something 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!

Source.

Answer from Alex on Stack Exchange
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 clear watch later list in one go??? - YouTube Community
YouTube Help · Sign in · Google Help · Help Center · Fix a problem · Watch videos · Manage your account & settings · Supervised experiences on YouTube · YouTube Premium · Create & grow your channel · Monetize with the YouTube Partner Program · Policy, safety, & copyright · More on support.google.com
🌐 support.google.com
October 16, 2024
Can't remove videos from watch later?
When I try to remove videos from my watch later playlist (I've tried this both on mobile and on desktop), YouTube refuses to let me delete the videos from it sometimes. For me to actually delete videos, I have to remove one, and then I have to wait something like 10 seconds before I can remove ... More on reddit.com
🌐 r/youtube
3
4
August 7, 2023
Clear watch later
setInterval(function () { document.querySelector('#primary button[aria-label="Action menu"]').click(); var things = document.evaluate( '//span[contains(text(),"Remove from")]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null ); for (var i = 0; i < things.snapshotLength; i++) { things.snapshotItem(i).click(); } }, 1000);

I'm quite late, but this should work for all public videos. I'm currently finding a way to also get rid of deleted and unavailable videos, as I have 286 of them, and am NOT going to sit there and remove them by hand. I've come up empty-handed so far in that regard, unfortunately.

More on reddit.com
🌐 r/youtube
5
3
December 15, 2020
🌐
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

🌐
GitHub
gist.github.com › astamicu › eb351ce10451f1a51b71a1287d36880f
Script to remove all videos from Youtube Watch Later playlist · GitHub
Let me know what you think! ... I created a similar script that works by just clicking the 3 dots and then on the "Remove from playlist" button. By default, this script removes 100 videos, but that is also adjustable · This should work for ...
🌐
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
Both work for the desktop web on a computer. ... Click Library → Watch later. Click the three-dot menu (⋯) above the list (next to “Play all”). Choose “Remove watched videos” to remove only watched items, or choose “Select all” ...
🌐
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 - YouTube does offer a simple way to remove all watched videos from your Watch Later playlist. 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.
Find elsewhere
🌐
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!

🌐
MiniTool
youtubedownload.minitool.com › home › how to delete videos from youtube watch later playlist?
Guide to Delete Videos from YouTube Watch Later Playlist
November 28, 2024 - Step 1: Go to the Watch later page on YouTube. 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.
🌐
Wondershare
filmora.wondershare.com › home › resource center › youtube video tips
How to Clear YouTube Watch Later Playlist - Filmora
December 10, 2025 - Select the "Remove from Watch Later" option to delete the video. You can repeat this process to remove all the content from the playlist until it is decluttered at the point of your satisfaction.
🌐
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 - Your instructions were the only ones that worked so easily for me, and i’d been searching for 30 minutes how to delete all my Watch Later. thanks so much! using F12 / then going to console tab. is so much easier than the ctrl + shift + J that ...
🌐
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
🌐
JustAnswer
justanswer.com › software › s4cgb-want-delete-liked-videos-watch-later-videos.html
How to Delete Liked and Watch Later Videos on YouTube
To do that, please log in to your account and navigate to: Go to Menu (Three horizontal lines) > Select Watch Videos or Watch Later > Tap the three vertical dots next to the video > Remove from liked/watch later video.
🌐
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 - YouTube Help · Sign in · Google Help · Help Center · Fix a problem · Watch videos · Manage your account & settings · Supervised experiences on YouTube · YouTube Premium · Create & grow your channel · Monetize with the YouTube Partner Program · Policy, safety, & copyright ·
🌐
Quora
quora.com › How-do-I-remove-all-videos-from-Watch-Later
How to remove all videos from Watch Later - Quora
Answer: You go to your watch later playlist and you select the videos you want to remove. I know, it must be painstaking that you can’t remove them all at once; but you can always remove videos with your finger. A different way, you sign out ...
🌐
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 - Touch the “vertical ellipsis” (three vertical dots) in the top-right corner of the video that you want to delete. Select the “Remove from Watch Later” button. The newer YouTube “Watch Later” feature on Android lets you remove the ...
🌐
YouTube
youtube.com › watch
How To Delete All Videos From Watch Later Playlist in Youtube - YouTube
A Video About How To Delete All Videos From Watch Later Playlist in YoutubeThis youtube tutorial shows you how to efficiently perform video management by del...
Published   December 10, 2025
🌐
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 - If you want to clear the entire list, the only way is to remove each video individually. Here’s how you can clear the Watch Later section of your YouTube account from your desktop: Open YouTube.com on your Windows, Mac, or Linux computer · ...
🌐
Google Support
support.google.com › youtube › answer › 56101
Add & remove videos from Watch later - Computer - YouTube Help
Click Remove from Watch later . If the video is set as made for kids, you can't add it to a playlist or save it to Watch Later.