How to delete all your Twitter likes (Working November 2020)
My best recommendation for you is, if you are not using Twitter to obtain a personal or financial benefit, delete your account today. It can only cause you harm.
If you have already been messing around I recommend you delete your activity. Some tools like TweetDelete will remove your comments but the likes are a different story. But it's easy using this trick.
Open your developer console. Most moder browsers have this in the options.
Navigate to the URL twitter.com/[your username]/like
This screen show you all your likes. It could be thousands of them.
In the console you opened paste the following code.
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
window.scrollTo(0, document.body.scrollHeight)
}, 1000)
And that's it! It might take a few minutes but all your likes will go away.
If you like risks and wish to continue using Twitter for fund I wish you luck, please remember here you have the trick if you ever regret your actions.