How to remove videos from youtube watch later list

With so many videos to watch on YouTube, it’s easy to get your “Watch Later” list cluttered. Luckily, with a few clicks (or taps), you can clear this list in your account. We’ll show you how.

When you clear the “Watch Later” list, YouTube removes both your partially and fully-watched videos from the list. It doesn’t remove the videos that you have not started to watch. To remove these videos, you’ll have to click the three-dots menu next to each video and select “Remove from Watch Later.”

Table of Contents

  • Clear “Watch Later” from the YouTube Website
  • Clear “Watch Later” from the YouTube Mobile App

Clear “Watch Later” from the YouTube Website

On a Windows, Mac, Linux, or Chromebook computer, use the YouTube site to clear your “Watch Later” list.

RELATED: How to Make YouTube Videos Loop Continuously

To begin, open a web browser on your computer and access the YouTube site. Log in to your YouTube (Google) account if you haven’t already.

On the YouTube site, in the sidebar to the left, click “Watch Later.”

How to remove videos from youtube watch later list

You can see your “Watch Later” videos on the right of the site. On this page, beneath the “Watch Later” header, click the three dots.

When seeing a good Youtube video, it is common for people to add it to the Youtube Watch Later list to “watch later”. The problem is that the list keeps adding up and becoming bigger and bigger.

  • See also: Youtube Thumbnail Grabber
  • If you don’t want to read all this long text, try a more simple version at Tle Apps.

The Watch Later list on Youtube is a great way to keep track of videos that you want to watch later. However, the list can quickly become overwhelming and cluttered if not managed correctly.

When the Watch Later list becomes too big, it will loose its purpose of keeping track of wanted videos. Users start deleting watched videos or uninteresting ones. But they must click “Remove from Watch later” for a hundreds of videos.

How to remove videos from youtube watch later list
Remove from Watch later

In most cases, people would rather not do this and simply leave the list as it is. This can lead to a lot of wasted time scrolling through videos that you have already seen or have no interest in. Therefore, it is important to keep your Watch Later list manageable so that it remains useful or find a good solution to delete all videos.

Bulk-deleting is the solution everyone loves. Youtube has a Delete watched videos feature which deletes videos you already watched. Even if you only watch 1 second of a video, it is also deleted. This is a great way to clean up your history and get rid of any unwanted videos. 

What about videos we haven’t watched? We still need to find a way to delete them in bulk. So Youtube still lacks the much-needed mass delete feature. Fortunately, we can execute a JavaScript block of code to mass delete Watch Later videos.

How to remove videos from youtube watch later list
“Remove watched video” feature

Table of Contents

  • Steps to Remove All Watch Later Videos at Once
  • Apply the Script in Different Languages
    • French
    • Spanish
    • Italiano
  • Common Questions About Youtube Watch Later
    • Why can’t I see my Watch Later on YouTube?
    • Is Watch Later private on YouTube?
    • How do I clear my Watch Later on mobile?
    • How long does a video exist on the Youtube Watch Later list?

Steps to Remove All Watch Later Videos at Once

  1. Open your Youtube Watch List in web browsers like Chrome or Brave. Or you can access it directly by typing https://www.youtube.com/playlist?list=WL to the Address bar.
  2. Press F12 to the open developer’s console or access it via the web browser’s Menu.
  3. Navigate to Console tab.
  4. Paste this script into the console and press Enter.
How to remove videos from youtube watch later list

Updated: 2022/11/01

Here are the scripts I used to delete videos on my Watch later list:

One of the following scripts might work for you. Try both to see which one sticks! The script was modified to work with recent Youtube changes.



setInterval(function() {
	document.querySelector('#contents 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 < things.snapshotLength; i++) {
		    things.snapshotItem(i).click();
		}		
}, 1000);

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 < things.snapshotLength; i++) {
		    things.snapshotItem(i).click();
		}		
}, 1000);

After pressing Enter, you will see videos disappearing one by one. When the script executes, it opens the menu of each video popup item and clicks on the Remove from Watch Later menu item.

How to remove videos from youtube watch later list

Apply the Script in Different Languages

Thank Xerus for reporting bout the script not working in other languages. Here is how to apply it to other languages:

  • Find the text of the hidden menu button (three vertical dots) by Right-click and Inspect on it. You will find the aria-label text in your language. Replace “Action menu” with the text in '#primary button[aria-label="Action menu"]'
  • Replace “Watch later” with the text in your language in span[contains(text(),"Watch later")
How to remove videos from youtube watch later list

French

I tried the script in the French language by replacing:

  • “Action menu” with “Menu d\’actions” – Remember to add a slash (\) before a single quote to escape it.
  • “Watch later” with “À regarder plus tard”

The script becomes:

setInterval(function() {
	document.querySelector('#contents button[aria-label="Menu d\'actions"]').click();
	var things = document.evaluate('//span[contains(text(),"À regarder plus tard")]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);
		for (var i = 0; i < things.snapshotLength; i++) {
		    things.snapshotItem(i).click();
		}		
}, 1000);

Spanish

setInterval(function() {
  document.querySelector('#contents button[aria-label="Menú de acciones"]').click();
  var things = document.evaluate('//span[contains(text(),"Ver más tarde")]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);
    for (var i = 0; i < things.snapshotLength; i++) {
        things.snapshotItem(i).click();
    }    
}, 1000);

Italiano

setInterval(function() {
  document.querySelector('#contents button[aria-label="Menu Azione"]').click();
  var things = document.evaluate('//span[contains(text(),"Guarda più tardi")]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);
    for (var i = 0; i < things.snapshotLength; i++) {
        things.snapshotItem(i).click();
    }    
}, 1000);

Common Questions About Youtube Watch Later

Why can’t I see my Watch Later on YouTube?

If you’re having trouble with the Watch later feature on the YouTube app for mobile, there are a few things you can try to fix the issue. First, try restarting the app. If that doesn’t work, try signing out of your Google account and then signing back in. If the problem persists, you may need to uninstall and then reinstall the YouTube app.

Is Watch Later private on YouTube?

Have you been wondering: is my Watch Later collection private? Can other people see what videos I’ve saved for later?

Fortunately, the answer is no. Your Watch Later collection is completely private, which means that only you can see the videos you’ve added to it. 

How do I clear my Watch Later on mobile?

In the YouTube app:

  • Select Library on the bottom bar.
  • Tap Watch Later under the Playlist section.
  • At the top-right corner of the Watch Later screen, tap the three dots.
  • Then choose Remove Watched Videos.

How long does a video exist on the Youtube Watch Later list?

Most videos, they will remain on your Watch Later list until you remove them. However, if a video is deleted by the uploader, it will be removed from your list automatically.