Last active
February 9, 2021 19:38
-
-
Save karlgroves/fabaf3720feae436a052f956ae089bb6 to your computer and use it in GitHub Desktop.
Bulk "Unlike" in Twitter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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