Skip to content

Instantly share code, notes, and snippets.

@icze4r
Last active November 23, 2022 06:44
Show Gist options
  • Save icze4r/1a90796685e49866408bf5f1227daa00 to your computer and use it in GitHub Desktop.
Save icze4r/1a90796685e49866408bf5f1227daa00 to your computer and use it in GitHub Desktop.
Adapted(?) from https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d
How to do this:
* Navigate to https://twitter.com/settings/blocked/all
* Go into Console (I use Chrome) and put this in
let autoUnlike = setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
window.scrollTo(0, document.body.scrollHeight)
}, 10000)
Hit enter
When you want it to stop, put in
clearInterval(autoUnlike)
and hit Enter.
Bizarrely, this removes 17 likes every 10 seconds.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment