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 likes from a suspended account, and also from an account that is private (likes don't show up on my likes page, but count as number of likes I have, BTW I can see the links to those tweets in my likes.js of my archive data).
Will any script delete those??