Skip to content

Instantly share code, notes, and snippets.

@m-kirstetter
Created June 29, 2015 08:29
Show Gist options
  • Save m-kirstetter/24bdee3a93c93edb3bbd to your computer and use it in GitHub Desktop.
Save m-kirstetter/24bdee3a93c93edb3bbd to your computer and use it in GitHub Desktop.
Twitter mass follow
a = setInterval(function () {
window.scrollTo(0,document.body.scrollHeight);
$('.not-following .user-actions-follow-button.js-follow-btn').click();
}, 1000);
// To stop it
clearInterval(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment