Skip to content

Instantly share code, notes, and snippets.

@karlgroves
Last active February 9, 2021 19:38
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 karlgroves/fabaf3720feae436a052f956ae089bb6 to your computer and use it in GitHub Desktop.
Save karlgroves/fabaf3720feae436a052f956ae089bb6 to your computer and use it in GitHub Desktop.
Bulk "Unlike" in Twitter
/**
* UNLIKE
* Navigate to your "likes"
* Open devtools & go to Console
* Paste this snippet in & hit Enter
*/
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