Skip to content

Instantly share code, notes, and snippets.

@chl03ks
Last active December 21, 2016 16:24
Show Gist options
  • Save chl03ks/c89c17ec6b7b85bf663a3d9f949a56eb to your computer and use it in GitHub Desktop.
Save chl03ks/c89c17ec6b7b85bf663a3d9f949a56eb to your computer and use it in GitHub Desktop.
Unflollow and follow all in twitter.
setInterval(function() {
t = $(".following").find(".follow-button"); //.not-following
if (!t[0]) {
window.scrollTo(0,
$(document).height());
} else {
console.log(t.attr("class"));
t.trigger("click");
}
}, 100)
@ostoh
Copy link

ostoh commented Dec 21, 2016

Awesome!

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