Skip to content

Instantly share code, notes, and snippets.

@Code-Tap
Last active September 9, 2020 08:53
Show Gist options
  • Save Code-Tap/6fd605decfbc42a42337aa723e680d96 to your computer and use it in GitHub Desktop.
Save Code-Tap/6fd605decfbc42a42337aa723e680d96 to your computer and use it in GitHub Desktop.
Unlike all your past likes on Twitter

Easily delete all your likes/favorites from Twitter.

setInterval(() => {
  for (const unlike_button of document.querySelectorAll('div[data-testid="unlike"]')) {
    unlike_button.click()
  }
  window.scrollTo(0, document.body.scrollHeight)
}, 2000) // This value can be lowerd but I found a 2 sec interval works best
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment