Browsing as a guest
Hello! You are currently browsing this thread as a guest, If you would like to reply to this thread, please
or Register


Silent Storm™
Easy Twitter follower method
#1
This is a good way to get followers on Twitter, the method is good for people who are looking to gain an audience in a certain niche.

First, you'd want to go on a big account under the same niche as you, and open up the followers tab.

Next, you want to copy paste this code into the console in your browser.


Follow command:
Code:
setInterval(function(){t=$(".not-following").find
(".follow-button");if(!t[0]){window.scrollTo(0,
$(document).height());}else{ console.log(t.attr
("class")); t.trigger("click");}},100)

This command basically follows everyone on that page overtime. You want to leave this page open. (Twitter has a max you can follow over a certain amount of time, you may need to refresh every so often)

When you want to unfollow people, use this command.

Unfollow command:
Code:
setInterval(function(){t=$(".following").find
(".follow-button");if(!t[0]){window.scrollTo(0,
$(document).height());}else{ console.log(t.attr
("class")); t.trigger("click");}},100)
Reply
#2
Interesting, I've heard of people doing this before.

Thanks for the share.
Reply
#3
Following example:

[Image: 1762821d678650c3230f21bb083173c4.gif]

Unfollowing Example:

[Image: f57193e919fbafa6b93449d6c4c5e09b.gif]

To those that do this you should always be careful because if you follow way more than are following because you risk your account being locked.

Overall, great share and it works like a charm!
Reply
#4
Great share! is working well.
[Image: arma_sig.png]
Reply
Browsing as a guest
Hello! You are currently browsing this thread as a guest, If you would like to reply to this thread, please
or Register