Skip to content

Instantly share code, notes, and snippets.

View mindiw01's full-sized avatar
💻

mindiw01 mindiw01

💻
View GitHub Profile
@mindiw01
mindiw01 / fav-twitter.md
Created May 25, 2020 21:06 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter
  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)
}, 1)