Created
April 26, 2023 14:24
-
-
Save pradprat/6b8931a7f1098039a582607fab81b2d9 to your computer and use it in GitHub Desktop.
Delete all retweet.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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