Skip to content

Instantly share code, notes, and snippets.

@underdown
Last active August 4, 2023 20:20
Show Gist options
  • Save underdown/c5aef190005204f32c6f to your computer and use it in GitHub Desktop.
Save underdown/c5aef190005204f32c6f 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
*/
@orschiro
Copy link

orschiro commented Sep 9, 2021

Is this still working for anyone?

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