Skip to content

Instantly share code, notes, and snippets.

@pradprat
Created July 12, 2022 04:15
Show Gist options
  • Save pradprat/9a1edf74a52a825761d9e13908c6641a to your computer and use it in GitHub Desktop.
Save pradprat/9a1edf74a52a825761d9e13908c6641a to your computer and use it in GitHub Desktop.
Delete All Followers Twitter
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