Wednesday, April 1, 2015


To delete all your tweets

First go to your twitter page ( http://www.twitter.com/<your-username-here> ) and scroll down all the way to bottom. Then right click on the page and choose "Inspect Element" as shown below: (Console is available on almost all major Browsers, here we show the screenshots in Google Chrome) (shortcut- ( Ctrl + Shift + I or F12)) You will get a screen similar to this, now navigate to "Console" Tab:
inspect element
Now enter the script in the text field provided:

$('.js-actionDelete').each(function(){$(this).trigger('click'); $('.delete-action').trigger('click'); });

and press Enter key!

Every Tweets on your screen will get deleted. If still some of your tweets remains, do the above steps again. (Retweets are deleted using another scripts)

To delete Retweets:

Refresh the page and scroll to bottom of the page again and enter the following code in the console:
$('.js-actionRetweet').each(function() { $(this).trigger('click'); });

and press enter key... You will get a screen similar to this and refresh the page.



To delete Favourites

Navigate to your favourites tab ( http://www.twitter.com/favorites ) and scroll all the way to the bottom of the page.
Open up the console as shown above either by right clicking and choosing "Inspect Element" or using shortcut- ( Ctrl + Shift + I or F12).
Now, enter the following code in your console:
$('.ProfileTweet-actionButtonUndo').each(function(){ $(this).trigger('click'); })

and press enter key... You will get a screen similar to this and refresh the page.



To delete all of your 'following' (Those who are being followed by you)

Navigate to the 'following' tab (http://twitter.com/following) and scroll all the way to the bottom of the page.
Open up the console as shown above either by right clicking and choosing "Inspect Element" or using shortcut- ( Ctrl + Shift + I or F12).
Now, enter the following code in your console:
$('.unfollow-text').each(function() { $(this).trigger('click'); });

and press enter key... You will get a screen similar to this and refresh the page.