Skip to content

Instantly share code, notes, and snippets.

@mialondon
Created February 3, 2022 17:11
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 mialondon/0fa8d6bc03768cd9c16daef41d55bc25 to your computer and use it in GitHub Desktop.
Save mialondon/0fa8d6bc03768cd9c16daef41d55bc25 to your computer and use it in GitHub Desktop.
How to use the browser console to delete favourites / unfavourite tweets, from https://gist.github.com/ashander/087ee26731c7eb68abc063fd299b8ba8?permalink_comment_id=3808457#gistcomment-3808457
// The below js code remove the likes on twitter
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