Note: It’s now April 2015. This is really old & probably won’t work anymore. But I don’t like removing old content, so I’ll keep this post up anyway
Here’s a Greasemonkey script to remove the “Who to follow” (aka “recommended users”) box on twitter.com.
It’s annoying as hell and way too facebookish.
// ==UserScript==
// @name No Recommended Twitter Users
// @namespace http://ngmarley.com/
// @description Remove 'who-to-follow' box on twitter.com.
// @include http://twitter.com/*
// ==/UserScript==
function disable() {
location.href="javascript:(function(){ $('#recommended_users').remove(); })()";
}
disable();
window.addEventListener("hashchange", disable, false);
Or just get it here.
If it doesn’t work, let me know & I’ll try & fix it or something.