Skip to content

Instantly share code, notes, and snippets.

@pradprat
Created July 12, 2022 04:04
Show Gist options
  • Save pradprat/9bbae469bde21f09e3cf1c734ba971ac to your computer and use it in GitHub Desktop.
Save pradprat/9bbae469bde21f09e3cf1c734ba971ac to your computer and use it in GitHub Desktop.
Delete All Following Twitter
setInterval(() => {
for (const d of document.querySelectorAll(
'div[data-testid$="unfollow"]'
)) {
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