Youtube: How to delete all liked videos at once from playlist

UPDATE: 08/12/2020

Now it is easy to delete all your likes.

(Note: This will delete your your likes and dislikes on YouTube videos from all time. Your activity will be permanently deleted from your account and no longer tied to you.)


Outdated Solution.

How to remove all your liked videos in your liked videos playlist on youtube.  As you may already know it is impossible to delete the “liked videos playlist” itself. So we will have to remove all the items in it. Doing that one by one will take a long time.

So the below solution will help to remove all videos at a time.

  • open you-tube
  • click on liked videos playlist
  • click on edit option (It will be under playlist name)
  • in the address tab add the following to the URL “&advanced_settings=1&disable_polymer=1”
  • open browser console (by pressing Ctrl + Shift + j)
    • Chrome: Windows: Ctrl + Shift + J | Mac: Option + Cmd + J
    • FireFox: Windows: Ctrl + Shift + K | Mac: Option + Cmd + K
    • Opera: Windows: Ctrl + Shift + J | Mac: Option + Cmd + J
    • Edge: Press “F12 “and then click on the “Console” tab.
    • Safari: Option + Cmd + C (You have to turn on the “Develop menu” . Click on Safari in upper left corner >> Preferences >> Advanced tab. >> At the bottom  check the box next to “Show Develop menu in menu bar”.)
  • Then insert the java-script code given at the bottom exactly as it shows.
  • reload the page and do again until your playlist is cleared. (or you can scroll down and click load more to show more items in the playlist prior to running the code)
  • Done!
var items = $('body').getElementsByClassName("pl-video-edit-remove-liked-video"); 
for(var i = 0; i < items.length; i++){
    items[i].click();
}

Responses

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

  1. coochee Avatar

    Doesn’t work. If I go inot my library after doing this and click liked videos, there’s still a huge list that I can only delete one by one.

    Like

    1. NesiSamurai Avatar

      You may need to wait a little, depending on how much you have in your list.

      Like

      1.  Avatar

        Yep. This is right. They did finally disappear. Thanks.

        Like

  2.  Avatar

    Thankyou!!!

    Like

  3.  Avatar

    Thank you for the updated solution!

    Like

  4. cc Avatar

    Great! Thanks a lot!!!

    Like

  5. Katy Skarlette Avatar

    When I put in the coding bit it says undefined, and after I hit enter nothing is deleted and I get a few red messages in the box saying err_blocked_by_client. Any change there’s another way to delete them all?

    Like

    1. NesiSamurai Avatar

      Are you sure you read the whole post?

      Like

  6. Bobar Avatar

    Thank you very much Neseef, I got sick of this same js code inserted everywhere I searched for this issue.
    Turns out you can simply do it on Google My Activity page!

    Like

  7. Anonymous Avatar

    New method worked great, thanks!

    Liked by 1 person

  8.  Avatar

    New method worked well thank you!

    Liked by 1 person

  9.  Avatar

    Getting undefined in the console, please help, I am tyring to do it using chrome

    Like

    1. NesiSamurai Avatar

      confirmed. I got the same error. I will check for another solution.

      Like

      1.  Avatar

        You’re an angel

        Liked by 1 person

        1. NesiSamurai Avatar

          Post updated with new solution.

          Like

  10.  Avatar

    thank you!!

    Liked by 1 person

  11. Anonymous Avatar

    THANK YOU !!

    Liked by 1 person

  12.  Avatar

    thanks, worked like a charm

    Liked by 1 person

  13.  Avatar

    It doesnt work on me, I wonder why….

    Liked by 1 person

  14. Sofiane Daïffi Avatar

    Work with Chrome, thanks!

    Liked by 1 person

  15.  Avatar

    Wow – it worked! LOL and how did it happened? I’m now curious about this code haha now my liked videos are now empty, thank you so much for the help you’re a star!

    Liked by 1 person

  16.  Avatar

    Thank you!!! This does work.

    Liked by 1 person

  17.  Avatar

    This does not work

    Like

    1. StupidFool Avatar

      I confirmed that this is not working.

      They have changed the website code. I will update this post if I find a solution.

      UPDATE: post is updated with new working solution.

      Like