Mass unfollow on Twitter (no apps)

Very good! As a user of the popular 140-character social network, Twitter, you will well know that when you follow a user, what is expected is that they will return the 'follow', but this is not always the case, since you threw the ball in their court , the user can decide whether to return it to you or not and in many cases there are those who only seek to inflate their follower count, so they ignore you.

If in your case you have followed many people and they have not given you the follow back, it's time for clean your twitter account, but not making use of the various web tools that are recommended to you on other sites, what I propose today is to do it manually using a simple but powerful script, do you dare? Let's see what it consists of.

How to remove non-followers on Twitter

Since it is annoying to authorize and disallow applications from our account, for this reason we do not intend to use a web tool and precisely on the kj blog OutControl, I found a code JavaScript that fully meets its objective; stop following who does not follow you : )

Step 1. Open your list of people followed on Twitter.

Step 2:. Scroll to the bottom of the page to fully load all the users you are following. All the way down, don't forget it 😉

Step 3:. Press the F12 key to open the JavaScript Console and paste the following script there.

function unfollowunfollowers () {// We declare the variables var index, users; // We get all the users on the screen in an object users = document.getElementsByClassName ('ProfileCard'); // We process user by user for (index = 0; index <users.length; ++ index) {// We check if the user does not follow us var followstatus = users [index] .getElementsByClassName ('FollowStatus'); if (followstatus.length == 0) {// We check if we are following it or not (0 = we are not following it) var nofollowing = users [index] .getElementsByClassName ('not-following'); if (nofollowing.length == 0) {// In case it doesn't follow us, we unfollow it users [index] .getElementsByClassName ('follow-button') [0] .click (); }}} // Script Created by KJ - http://outcontrol.net} unfollowunfollowers ();

After pressing enter, the script will start its work even if you don't see it, just wait a few seconds or minutes for it to finish, the time may vary depending on the number of people you follow.

That is all! I invite you to take the test and share the result in the comments. Without a doubt, it is a great alternative that is worth sharing on your social networks =)


Leave a Comment

Your email address will not be published. Required fields are marked with *

*

*

  1. Responsible for the data: Actualidad Blog
  2. Purpose of the data: Control SPAM, comment management.
  3. Legitimation: Your consent
  4. Communication of the data: The data will not be communicated to third parties except by legal obligation.
  5. Data storage: Database hosted by Occentus Networks (EU)
  6. Rights: At any time you can limit, recover and delete your information.

  1.   Barcelona said

    good page friend thanks