Skip to content

Instantly share code, notes, and snippets.

@ilsubyeega
Created December 1, 2023 14:17
Show Gist options
  • Save ilsubyeega/c4322197514fcd18ca59eb12c7661d74 to your computer and use it in GitHub Desktop.
Save ilsubyeega/c4322197514fcd18ca59eb12c7661d74 to your computer and use it in GitHub Desktop.
Undo/Delete every retweet/likes from your account using browser javascript
// undo every tweets
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unretweet"]')) {
d.click()
}
for (const d of document.querySelectorAll('div[data-testid="unretweetConfirm"]')) {
d.click()
}
window.scrollTo(0, document.body.scrollHeight)
}, 1000)
// undo every likes
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