Last active
December 21, 2016 16:24
-
-
Save chl03ks/c89c17ec6b7b85bf663a3d9f949a56eb to your computer and use it in GitHub Desktop.
Unflollow and follow all in twitter.
This file contains hidden or 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
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!