Skip to content

Instantly share code, notes, and snippets.

@emdeeeks
Forked from underdown/auto-follow-twitter.js
Created January 23, 2016 16:55
Show Gist options
  • Save emdeeeks/c291cf0879ff3afbf59e to your computer and use it in GitHub Desktop.
Save emdeeeks/c291cf0879ff3afbf59e to your computer and use it in GitHub Desktop.
auto follow twitter
a = setInterval(function () {
window.scrollTo(0,document.body.scrollHeight);
$('.not-following .user-actions-follow-button.js-follow-btn').click();
}, 4000);
/* changed setinterval to 4k ms - original source here https://medium.com/@karanjthakkar/how-i-grew-from-300-to-5k-followers-in-just-3-weeks-2436528da845
Just browse to someones follower list, hit F12 on chrome and plug this snippet into the console tab and hit enter
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment