react-social-login

The easiest way to integrate Social Login in your React Apps ...Checkout NPM

Sunday, January 10, 2016

Bulk Unfollow on Twitter for Spam Accounts

Likely, you would have been shocked like me when you logged into your Twitter account only to see that you've been following hundreds of account. Following is step-by-step to get rid of this in 5 minutes.

Most Important
Reset Your Password First

Then,
1. Using Chrome, login into Twitter account and click Following
= This will list all accounts you've been following.
2. Scroll down until Twitter stops loading any more Twitter Accounts
3. Press F12 to open developer tools and select Console Tab
4. Enter following in console window and hit Enter
5. It will take some time. Once you see undefined, refresh your screen.

var x = 1;
while(x<5)
{
$('.follow-button')[x++].click()
}

Replace 500 with Total Accounts You're Following - Count of your valid accounts since begininng.

THIS WILL UNFOLLOW ALL ACCOUNTS FROM THE LATEST FOLLOWED ACCOUNT TILL THE COUNT SPECIFIED.


No comments :

Post a Comment

What are your thoughts on this post? Did you like it?