twitterでおすすめユーザー欄を消すGreaseMonkeyスクリプト

webのtwitterでは
おすすめユーザーの欄が出るようになったのですが、
これが自分にとってはなんか不要だなあ、と、
twitterで呟いたらfollowerの方にそのおすすめユーザーを消す
スクリプトをプレゼントして頂きました。
ありがとう!


http://sabotenbrother.com/recommendnore.user.js



// ==UserScript==
// @name recommendnone
// @namespace recommendnone
// @description delete recommended users list
// @include http://twitter.com/*
// @version 0.1
// ==/UserScript==
//
// auther: sabotenbrother http://twitter.com/sabotenbrother

(function(){
function recomendnone(){
document.getElementById('recommended_users').style.display = 'none';
}

recomendnone();
})();

消えたよ!
事前にGreaseMonkeyインストールしてね。