Skip to content

Instantly share code, notes, and snippets.

@pradprat
Created April 26, 2023 14:24
Show Gist options
  • Save pradprat/6b8931a7f1098039a582607fab81b2d9 to your computer and use it in GitHub Desktop.
Save pradprat/6b8931a7f1098039a582607fab81b2d9 to your computer and use it in GitHub Desktop.
Delete all retweet.js
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();
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment