Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffmcneill/7a80122fdd7ad2276f8f4c37140c92e8 to your computer and use it in GitHub Desktop.
Save jeffmcneill/7a80122fdd7ad2276f8f4c37140c92e8 to your computer and use it in GitHub Desktop.
[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()
}
window.scrollTo(0, document.body.scrollHeight)
}, 10000)
@jeffmcneill
Copy link
Author

Latest version works as of 08-Sep-22 with 6,000+ likes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment