Created
July 12, 2022 04:15
-
-
Save pradprat/9a1edf74a52a825761d9e13908c6641a to your computer and use it in GitHub Desktop.
Delete All Followers Twitter
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[aria-haspopup="menu"]' | |
)) { | |
d.click(); | |
} | |
for (const d of document.querySelectorAll( | |
'div[data-testid="removeFollower"]' | |
)) { | |
d.click(); | |
} | |
for (const d of document.querySelectorAll( | |
'div[data-testid="confirmationSheetConfirm"]' | |
)) { | |
d.click(); | |
}},1000) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment