なにかあっても責任とれませんよ。改造は好きに。
for google chrome
noci2col.user.js
for greasemonkey(firefox)
noci2colff.user.js
こんなかんじ


適当な中身(chrome版)
// ==UserScript==
// @match http://www.nicovideo.jp/search/*
// @match http://www.nicovideo.jp/tag/*
// ==/UserScript==

(function(D){
var sty=D.createElement("style");
sty.innerHTML =
".thumb_uad_1,.thumb_uad_2,.thumb_uad_3{float:left}"+
".thumb_vinfo{margin:2px;padding:2px;border:2px solid #ccc;width:320px;height:120px;float:left}"+
".thumb_vinfo * p{font-size:10px}"+
".vinfo_description,.vinfo_last_res,.thumb_vinfo * td p.font12{width:200px}"+
".vinfo_title {font-weight:bold;display:block;width:200px;}"+
".thumb_vinfo * nobr {white-space:normal}"+
".dot_2{display:none;}"+
".pager{float:right;}"+
".content_672 > p.font12 {width:600px;float:left;border-top:1px dashed gray}";
D.head.appendChild(sty);
})(document);