Skip to content

Instantly share code, notes, and snippets.

View brunarafaela's full-sized avatar
🌑
* * ✵ ✺  . ✫   . . ⋆ + *   ˚ ⊹ . ⊹ ✦   · . .    · ✦  

Bruna brunarafaela

🌑
* * ✵ ✺  . ✫   . . ⋆ + *   ˚ ⊹ . ⊹ ✦   · . .    · ✦  
  • São Paulo, Brazil
View GitHub Profile
@brunarafaela
brunarafaela / delete-likes-from-twitter.md
Created September 10, 2022 23:59 — 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()
 }