Skip to content

Instantly share code, notes, and snippets.

@phocks
Last active June 30, 2020 20:16
Show Gist options
  • Save phocks/64afa978e13f43621d74f9f7e454a139 to your computer and use it in GitHub Desktop.
Save phocks/64afa978e13f43621d74f9f7e454a139 to your computer and use it in GitHub Desktop.
var buttons = document.querySelectorAll(".follow_button");
async function doUnfollows() {
for (const button of buttons) {
button.click();
await new Promise(r => setTimeout(r, 500));
}
}
doUnfollows();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment