Youtube – Delete all videos on the “Liked Videos” YouTube automatic playlist

youtubeyoutube-playlist

YouTube maintains an automatic playlist on my channel, called "Liked videos", with all the videos I have clicked the thumbs-up button.

For personal reasons, I want to clean up this list. (Deleting my YouTube account is not an option.)

I know I can delete the videos one by one, but that wouldn't fit my December, 2025 deadline. Is there a way (or a user script) to delete them all at once?

Best Answer

Go to the Liked playlist, open a console in the browser and write this:

var items = $('body').getElementsByClassName("pl-video-edit-remove-liked-video"); 
    for(var i = 0; i < items.length; i++){
        items[i].click();
            }

After this just hit the refresh button.