Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
- Go to: https://twitter.com/{username}/likes
- Open the console and run the following JavaScript code:
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
window.scrollTo(0, document.body.scrollHeight)
}, 1000)
I want to delete my old likes.
Usually when I wanted my old likes appear, I force the update by scrolling down the page and the codes above work fine for me.
But since yesterday, the old likes no longer appear with these method (even with the @hamzah1P16 code)
I tried with Brave, google and with the application.
I have over 2800 likes but they are invisible
Do you have a solution?