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 button of document.querySelectorAll(
'button[data-testid="unlike"], button[aria-label*="Liked"]'
)) {
button.click();
}
window.scrollTo(0, document.body.scrollHeight);
}, 1000);