Skip to content

Instantly share code, notes, and snippets.

@kikitte
Created May 16, 2021 08:04
Show Gist options
  • Save kikitte/5b50c13afb55286791f4d5d62e9a2ed9 to your computer and use it in GitHub Desktop.
Save kikitte/5b50c13afb55286791f4d5d62e9a2ed9 to your computer and use it in GitHub Desktop.
Flow / Unfloaw all people on github page
Open chrome devtools and paste this code, and run it.
@kikitte
Copy link
Author

kikitte commented May 16, 2021

Flow

document.querySelectorAll('input[value=Follow"]').forEach(btn => btn.click())

Unflow

document.querySelectorAll('input[value="Unfollow"]').forEach(btn => btn.click())

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment