Skip to content

Instantly share code, notes, and snippets.

@thomasrstegelmann
Last active January 12, 2016 17:00
Show Gist options
  • Save thomasrstegelmann/f69dd56748afa1f34575 to your computer and use it in GitHub Desktop.
Save thomasrstegelmann/f69dd56748afa1f34575 to your computer and use it in GitHub Desktop.
Paste the following code in your browser's console to unfollow all users visible in Crowdfire's (http://web.crowdfireapp.com/) unfollow view instead of clicking each icon manually.
// Use clearInterval(a); to stop interval or reload page
a = setInterval(function () {
// Scroll to bottom
window.scrollTo(0,document.body.scrollHeight);
// Unfollow
$(".icon-button-unfollow").click();
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment