Skip to content

Instantly share code, notes, and snippets.

@yukihirai0505
Last active November 14, 2022 04:34
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 yukihirai0505/96bf303d4928e5f425bebc73c19f8478 to your computer and use it in GitHub Desktop.
Save yukihirai0505/96bf303d4928e5f425bebc73c19f8478 to your computer and use it in GitHub Desktop.
Remove All likes from your twitter account
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
window.scrollTo(0, document.body.scrollHeight)
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment