Skip to content

Instantly share code, notes, and snippets.

View h1r3n's full-sized avatar

Hiren A h1r3n

  • 05:31 (UTC -04:00)
View GitHub Profile
@h1r3n
h1r3n / delete-likes-from-twitter.md
Created June 21, 2020 14:25 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }