Remove All Your Twitter Followers Easily

UPDATE (25 August 2017): This Method No longer Works. Don’t Waste your time trying.

Thinking to clean up your twitter followers? Then here is the easiest method to remove all your twitter followers in bulk. I have been trying to remove all my followers for a long time, but I didn’t find any website or tool to do this work. Now I found one method by which we can quickly remove/delete all our twitter followers automatically.

Why Remove all your Twitter Followers?

This answer might be different from one user to another user. For me, I involved in #followback team. That means, if you follow me on twitter, then I also follow back you on twitter. This method is used to increase twitter followers count. Later I think that there is no use of increasing twitter followers if no one is engaging with you on twitter.

More over, if you have a lot of spam followers or if you have a lot of bots following you on twitter, then it actually decreases yours creditably. So instead of having such followers, it is better to remove those followers.

Another reason is, As I said above, I have involved in follow back team because of this I received many followers. Now I stopped following them using some mass unfollow tool. But still those users are following you on twitter. Don’t you think we are cheating those users who followed us just because we followed them? This is one of the main reason I removed all my followers.

Or for any other reason, you may be thinking to start all over again. Then you use this tip to remove all your followers.

Also Read:  Know your Twitter Activity with Twifficiency

What are you going to miss after deleting all your Followers?

The first thing you are going to miss is, your followers count on twitter and second is some genuine followers. I really missed some genuine twitter followers on my account. I think it would be around 10% of my original follower’s count. That would be around 400 to 1000 followers.

You can avoid this by manually going through the list. I will explain this later.

Don’t miss:  Check domain name available or not on Twitter!

How to Remove/Delete your Followers in Mass on Twitter?

To achieve this, I used the modified version of this code. That code is used to remove fake followers on twitter but I need to remove all my followers so I modified that code to remove all my followers on twitter.

Changes I made to that code is

Original Values Changed Values
var limit = 20 var limit = 2000000
if (parseInt(tweets) > 100 || parseInt(followers) > 100) if (parseInt(tweets) > 10000000 || parseInt(followers) > 1000000)

Modify that original values with changed values or you can copy modified code from here and follow below steps.

Tip: Always use the code for author site to get the updated version.

1. Now open your chrome browser (need chrome only) and visit  https://twitter.com/followers  page

2. Now open JavaScrit Console by Pressing  Ctrl+Shift+J  and enter the modified code in console tab and press Enter

deleting followers on twitter

3. Now you will see small message on twitter website saying “Direction for removing twitter followers” click on “click here to get started!” button

4. When you click that, it will start scanning your twitter profile for followers and selects all your followers
5. Once the scan is over, you will see the result. If you don’t need to remove your followers, then click “Don’t remove me!” button to avoid removing your follower

6.  Now click “Delete Fake followers” button to remove all your followers.

remove all followers twitter

Note: If you have a large number of users following you, then it will take some time to remove all those followers. To check how many followers it has removed, just open a new tab and visit your followers page. You will see followers number decreased if it is removing your followers.

Video Guide:

8 thoughts on “Remove All Your Twitter Followers Easily”

    1. Found a pretty simple javascript/browser method on the web that was meant to clear out ‘Fake’ Users (those using Twitter default profile images). It did the job, and yes it might even err if some of your best friends/followers still don’t like to post a unique image on their profile.. ‘but thems are the breaks’.. LOL

      The one addition I included; as I was removing ALL followers before Twitter account deactivation, was to use slightly different search criteria to find and included into the deletion set, ALL Followers.

      var unList = [];
      alert(“***************\n******************** @YourTwiterHandle******\n***************** YourTwitterHandle******************\n***************************\n > This process may take some time.\n > This tab will become unclickable while processing.\n > Open a new tab to browse Twitter.”);
      $(‘.ProfileCard’).each(function(){
      if($(this).find(‘.ProfileCard-avatarImage’).attr(‘src’).indexOf(“default_profile_images/default_profile”) >= 0){unList.push($(this)); }});
      unList.forEach(function(acc){
      if(($(‘.alert-messages .hidden’))){ $(‘.alert-messages’).remove();}
      $(acc).find(‘.user-dropdown’).trigger(‘click’);
      $(acc).find(‘.block-text’).find(‘.dropdown-link’).trigger(‘click’);
      $(‘.block-button’).trigger(‘click’);
      });
      alert(“> Done! ” + unList.length + ” Accounts removed! \n> This page may take some additional time to become responsive again.”);

      HOW TO USE THIS SCRIPT?
      FIRST YOU NEED GOOGLE CHROME AND GO TO YOUR TWITTER FOLLOWERS PAGE
      AFTER DO RIGHT CLICK AND INSPECT ELEMENT AND OPEN CONSOLE TAB

      Copy the script and paste into console; Hit enter; Let it run for 1 minute and it will remove a subset of the users. Wash, Rinse, Refresh Browser to see decremented counts; Repeat.

      The compare at the end of the statement starting with: “if($(this)” …for ‘default_profile’ can be adjusted to remove
      Fake users with: >= 0 [Greater than equal to zero]
      or
      real users with < 0 [Less than Zero]

      Enjoy!

    1. I’m sorry dude.. I took code from another site and modified little that’s it. You should contact that site owner to fix that issue.

  1. Hello Arun, can you write a code where we can put the name of certain @s (multiple) and have a button to block them all in 1 Go ?

Leave a Comment

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

Scroll to Top