-
-
Save emdeeeks/c291cf0879ff3afbf59e to your computer and use it in GitHub Desktop.
auto follow 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
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