By ze2000
3 years ago

How to delete all your Twitter likes (Working November 2020)

.
Twitter is a very popular social media but at the same time a dangerous place to be. Recently we have seen people getting dismissed from their jobs after being harassed by intolerant hordes with different political views. One wrong comment, one like our of place, and your life might turn up side down in the time in takes to make a click.

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.
3 years
Strabunica013 Thank you very much dear friend ! ?
3 years
3 years
Marinche80 Interesting article
3 years
3 years
simona Interesting, thank you!
3 years