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 think the fastest way is to block the CDN domains that I will provide in the Ublock Origin > My FILTERS section and then use the script below with an interval of 600 ms because the current rate limit is 500 req/5min, so 600ms is suitable for this situation.
CDN domains
(Don't forget to delete the filters afterwards.)