Unfollow Everyone on twitter, Very Easy Method to unfollow all you are following
Step 1 : Log in to your twitter account.
Step 2 : Go to your following list i.e. goto https://twitter.com/following.
Step 3 : Keep scrolling to the bottom repeatedly until all list of users you are following is loaded.
Step 4 : Open browser console and run the following javascript code :
[].slice.call(document.querySelectorAll('.unfollow-text')).forEach(function(button) {
button.click();
});
Note :1) To open console in Firefox press ctrl+shift+K and in Google Chrome press ctrl+shift+J.
2)If you have a massive list to unfollow you can do it without loading full list simply load a reasonable number of user once and repeat it.
ENJOY :)