Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save astamicu/eb351ce10451f1a51b71a1287d36880f to your computer and use it in GitHub Desktop.
Save astamicu/eb351ce10451f1a51b71a1287d36880f to your computer and use it in GitHub Desktop.
Script to remove all videos from Youtube Watch Later playlist

UPDATED 22.11.2022

It's been two years since the last update, so here's the updated working script as per the comments below.

Thanks to BryanHaley for this.

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.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();
    }
}, 500);

Non-english users will need to change "Action menu" and "Remove from" to what YouTube uses for their localization.

@DewasSquid
Copy link

For all the french here, use this :
setInterval(function () { document.querySelector('#primary button[aria-label="Menu d\'actions"]').click(); var things = document.evaluate( '//span[contains(text(),"Supprimer de")]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null ); for (var i = 0; i < things.snapshotLength; i++) { things.snapshotItem(i).click(); } }, 1000);

@othyn
Copy link

othyn commented May 3, 2022

It's insane to me that in 2022 this is still the only way to clear YouTube's Watch Later, and with much pain involved because you hit their stupid rate limit after 200 requests.

I have a Pi Hole and other blockers so YouTube can't tell when a video is 'watched'.

I have around 3,000 videos to clear. It always takes hours as it gets this way every few months.

@jzisser9
Copy link

jzisser9 commented May 3, 2022

It's insane to me that in 2022 this is still the only way to clear YouTube's Watch Later, and with much pain involved because you hit their stupid rate limit after 200 requests.

I have a Pi Hole and other blockers so YouTube can't tell when a video is 'watched'.

I have around 3,000 videos to clear. It always takes hours as it gets this way every few months.

Me too. I'm starting to wonder if this can be done through API calls too.

@othyn
Copy link

othyn commented May 3, 2022

Checking the official YouTube API docs, it does seem possible. I'm yet to go through their official examples repo, but by the looks of it you could use the playlistitems list endpoint to grab all the video ID's in the playlist, then loop through them and send a delete request using the playlistitems delete endpoint.

The only limitation, and its a massive one, is that you are limited to 10,000 'units' per day, with playlist deletions costing 50 per request meaning you'd blow through the quota in just 200 video deletions, which is insane and according to YouTube is 'an amount sufficient for the majority of our API users'. In order to get more, they have to audit your project:

The YouTube Data API uses a quota system to ensure that developers use the service as intended and do not create API clients that unfairly reduce service quality or limit access for others.

Projects that enable the YouTube Data API have a default quota allocation of 10,000 units per day, an amount sufficient for the majority of our API users. You can see your quota usage on the Quotas page in the API Console.

If you would like to request additional quota beyond the default allocation, you must first complete an audit to show that your project is in compliance with the YouTube API Services Terms of Service. This gives YouTube visibility into the intended use cases of large projects and ensures that YouTube's API services are being used in a manner that is free from abuse. Visit this link for additional details on complying with YouTube’s Developer Policies.

I remember all this going down with 3rd party YouTube apps on the various mobile app stores, one by one slowly getting shutdown to force everyone to use the native apps and clients, with much more reduced functionality and rife with petty design (UX and software) decisions.

YouTube really, really needs a competitor.

@jzisser9
Copy link

jzisser9 commented May 3, 2022

@othyn seriously, it beggars belief that such a simple function takes this much work to accomplish, with strings attached. For each video on this specific playlist, remove it.

@othyn
Copy link

othyn commented May 3, 2022

👍

@awelch83
Copy link

awelch83 commented May 3, 2022 via email

@Foks256
Copy link

Foks256 commented May 12, 2022

For anyone from Czech Republic, you can use this modified function from a few comments above.

setInterval(() => {
  document.querySelector('#primary button[aria-label="Nabídka akcí"]').click();
  document.evaluate('//span[contains(text(),"Odstranit ze seznamu")]', document, null, 
   XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0).click();
}, 500);

@ibakirov
Copy link

@AwareWulf Thanks for sharing 👍

@Arcadi-fr
Copy link

For all the french here, use this :
setInterval(function () { document.querySelector('#primary button[aria-label="Menu d\'actions"]').click(); var things = document.evaluate( '//span[contains(text(),"Supprimer de")]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null ); for (var i = 0; i < things.snapshotLength; i++) { things.snapshotItem(i).click(); } }, 1000);

Merci beaucoup @DewasSquid ! Fonctionne au 02 juin 2022

@georgedonnelly
Copy link

This works great, thank you.

@M123-dev
Copy link

For everyone using a different language you have to update:

1: aria-label="HERE"

and

2: '//span[contains(text(),"HERE")]',


The second one is just the content of the "Remove from playlist button", press on the 3 dots and copy the text. Just some words is okay, e.g "Remove from" is totally fine.


Number 1 is a bit more tricky, to find it you have to inspect the 3 dots button (right click => inspect or something simillar)
It looks like this:
(Make sure to inspect the button not the icon, just inspect a bit on the side from the three dots.)

<button id="button" class="style-scope yt-icon-button" aria-label="Aktionsmenü"><yt-icon class="style-scope ytd-menu-renderer"</button>

From there you have to use the content of the aria-label

@jayuboi
Copy link

jayuboi commented Aug 14, 2022

It worked just fine!!
I don't know why youtube does not include this feature, I had thousends of videos on the watch later section and I'm 100% that i'm actually not going to watch none of them :) but I want to use this feature of watch later but know in the proper way.
Anyways thank you very much and greetings from colombia 👍

@artgmrs
Copy link

artgmrs commented Aug 23, 2022

Works perfect for me Just suited to german

setInterval(function () {
// Changed "Action menu" to "Aktionsmenü" (DE)
  	document.querySelector('#primary button[aria-label="Aktionsmenü"]').click();
  	var things = document.evaluate(
// ... as well as "Remove from" to "Aus"
    '//span[contains(text(),"Aus")]',
    document,
    null,
    XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
    null
  );
  for (var i = 0; i < things.snapshotLength; i++) {
    things.snapshotItem(i).click();
  }
},` 1000);

Works perfect! Just suited to pt-br

setInterval(function () {
  	document.querySelector('#primary button[aria-label="Menu de ações"]').click();
  	var things = document.evaluate(
    '//span[contains(text(),"Remover")]',
    document,
    null,
    XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
    null
  );
  for (var i = 0; i < things.snapshotLength; i++) {
    things.snapshotItem(i).click();
  }
}, 1000);

@mlindgren
Copy link

@othyn, unfortunately you can't do this at all with the YouTube API, because it will not return the contents of the Watch Later playlist: https://developers.google.com/youtube/v3/revision_history#september-15,-2016

@MKaczkow
Copy link

Suited for PL:

setInterval(function () {
    document.querySelector('#primary button[aria-label="Menu czynności"]').click();
    var things = document.evaluate(
        '//span[contains(text(),"Usuń z ")]',
        document,
        null,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
        null
    );
    for (var i = 0; i < things.snapshotLength; i++) {
        things.snapshotItem(i).click();
    }
}, 500);

Action menu changed to Menu czynności
Remove from changed to Usuń z

@Zyzto
Copy link

Zyzto commented Oct 31, 2022

For Arabic:

setInterval(function () {
  document.querySelector('#primary button[aria-label="قائمة الإجراءات"]').click();
  var things = document.evaluate(
    '//span[contains(text(),"إزالة من")]',
    document,
    null,
    XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
    null
  );
  for (var i = 0; i < things.snapshotLength; i++) {
    things.snapshotItem(i).click();
  }
}, 200);

@bryancasler
Copy link

With the latest redesign of the Watch Later page, none of the previous solutions work. I think we're going to have to search for the textContent of spans, for example: Array.from(document.querySelectorAll('span.style-scope.yt-formatted-string')).find(el => el.textContent === 'Remove from ');

@mimi1597
Copy link

mimi1597 commented Nov 9, 2022

this code worked....:)

@Alpakash
Copy link

Alpakash commented Nov 19, 2022

Thanks worked like a charm! Had to translate the aria-label and text for dutch:

setInterval(function () {
  document.querySelector('#primary button[aria-label="Actiemenu"]').click();
  var things = document.evaluate(
    '//span[contains(text(),"Verwijderen uit")]',
    document,
    null,
    XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
    null
  );
  for (var i = 0; i < things.snapshotLength; i++) {
    things.snapshotItem(i).click();
  }
}, 1000);

@BryanHaley
Copy link

BryanHaley commented Nov 21, 2022

Here's my take on this

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.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();
    }
}, 500);

Working as of 11/21/2022. Just let it run in the background. Non-english users will need to change "Action menu" and "Remove from" to what YouTube uses for their localization.

@jumiller-cotiviti
Copy link

jumiller-cotiviti commented Nov 30, 2022

If you need it to clear hidden videos this is the tweak to do that (I had like 200) - click options menu and show hidden videos then run this

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.querySelector('#button > yt-icon').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();
    }
}, 500);

@kangdaeki
Copy link

This is a lifesaver for me. Thanks.

@drementer
Copy link

drementer commented Jan 12, 2023

Türkler için

setInterval(() => {
  document.querySelector('#primary button[aria-label="İşlem menüsü"]').click();
  document
    .evaluate(
      '//span[contains(text(),"Daha sonra")]',
      document,
      null,
      XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
      null
    )
    .snapshotItem(0)
    .click();
}, 100);

Hızlandırılmış hali

setInterval(() => {
  document.querySelector('#primary button[aria-label="İşlem menüsü"]').click();
  document
    .evaluate(
      '//span[contains(text(),"Daha sonra")]',
      document,
      null,
      XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
      null
    )
    .snapshotItem(0)
    .click();
}, 50);

@MShrimp4
Copy link

Korean version, if someone needs it
한국어 환경에서 유튜브 나중에 볼 동영상 전부 지우기

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.querySelector('#primary button[aria-label="작업 메뉴"]').click();

    var things = document.evaluate(
        '//span[contains(text(),"에서 삭제")]',
        document,
        null,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
        null
    );

    for (var i = 0; i < things.snapshotLength; i++) 
    {
        things.snapshotItem(i).click();
    }
}, 500);

@LisichkinVlad
Copy link

LisichkinVlad commented Feb 12, 2023

Russian version

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.querySelector('#primary button[aria-label="Меню действий"]').click();

    var things = document.evaluate(
        '//span[contains(text(),"Удалить из плейлиста")]',
        document,
        null,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
        null
    );

    for (var i = 0; i < things.snapshotLength; i++)
    {
        things.snapshotItem(i).click();
    }
}, 500);

@niklas-a
Copy link

Swedish version:


setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.querySelector('#primary button[aria-label="Åtgärdsmeny"]').click();

    var things = document.evaluate(
        '//span[contains(text(),"Ta bort från")]',
        document,
        null,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
        null
    );

    for (var i = 0; i < things.snapshotLength; i++) 
    {
        things.snapshotItem(i).click();
    }
}, 500);

@colejd
Copy link

colejd commented Mar 2, 2023

YouTube appears to rate limit you after 200ish deletions in a short time - so while the deletions appear to work on the UI side, the videos aren't actually removed from the playlist. Absolutely infuriating.

Here's a modified version of the script that deletes 200 at a time, waiting 5 minutes between each batch to avoid doing any deletions that, uh, don't actually delete. With a 5000-video playlist, this should take 167ish minutes to run. Just put it on overnight or something.

function deleteVideoFromWatchLater() {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];
    video.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();
    }
}

async function deleteWatchLater() {
  // Fiddle with these if you'd like
  let batchSize = 200; // Number to delete at once before waiting
  let waitBetweenBatchesInMilliseconds = 1000 * 60 * 5; // 5 minutes
  let waitBetweenDeletionsInMilliseconds = 500; // Half a second

  let totalWaitTime = ((5000 / batchSize) * (waitBetweenBatchesInMilliseconds / 1000 / 60)) + (5000 * (waitBetweenDeletionsInMilliseconds / 1000 / 60))
  console.log(`Deletion will take around ${totalWaitTime.toFixed(0)} minutes to run if the playlist is full.`);

  let count = 0;
  while (true) {
    await new Promise(resolve => setTimeout(resolve, waitBetweenDeletionsInMilliseconds));
    deleteVideoFromWatchLater();
    count++;

    if (count % batchSize === 0 && count !== 0) {
      console.log('Waiting for 5 minutes...');
      await new Promise(resolve => setTimeout(waitBetweenBatchesInMilliseconds));
    }
  }
}

deleteWatchLater();

The batch sizes and wait times are guesses, but they worked for me. You may need to run this more than once if any rate limiting happens - just reload the page and run the script again.

@papiforcex
Copy link

papiforcex commented Mar 25, 2023

There's the french version:

To launch it:

const watchLaterCleaner = setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

    video.querySelector('#primary button[aria-label="Menu d\'actions"]').click();

    var things = document.evaluate(
        '//span[contains(text(),"Supprimer de")]',
        document,
        null,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
        null
    );

    for (var i = 0; i < things.snapshotLength; i++) 
    {
        things.snapshotItem(i).click();
    }
}, 500);

To stop it (if you want to):

clearInterval(watchLaterCleaner);

@nataliepjlin
Copy link

works well! thanks a lot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment