Last active
January 12, 2016 17:00
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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