Skip to content

Instantly share code, notes, and snippets.

@pr3ssh
Created February 5, 2020 16:48
Show Gist options
  • Save pr3ssh/19e6daf98d0b548ebbde436f7c108dd5 to your computer and use it in GitHub Desktop.
Save pr3ssh/19e6daf98d0b548ebbde436f7c108dd5 to your computer and use it in GitHub Desktop.
// Goto https://twitter.com/{username}/likes
// Open Browser Console
// Execute:
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