Firefox4でGoogleの検索結果を2カラムで表示する方法


こちらの「install Stylish with AddonFox」をクリックすると2カラムになると思います。


私はStylishなどの特別なアドオンをインストールしたくなかったので、「install as a user script」の中にあるcssを抜き出してuserContent.cssに追加しました。

  • C:\Users\ユーザー名\AppData\Roaming\Mozilla\Firefox\Profiles\ランダム文字列.プロファイル名\chrome\userContent.cssに以下のcssを追加
@-moz-document url-prefix("http://www.google.co.jp/search"), url-prefix("http://www.google.com/search"){
	#cnt { 
		min-width: 100% !important;
		padding: 10 !important;
	}
	#res.med > div {
		-moz-column-count: 2 !important;
		-webkit-column-count: 2 !important;
		margin: 0 !important;
	}
}