// ==UserScript== // @name Google Fix // @namespace NC // @author Nathan Caroyannis // @include *.google.* // ==/UserScript== function AddStyle(Style) { var style = document.createElement('style'); style.type = "text/css"; style.innerHTML = Style; document.getElementsByTagName('head')[0].appendChild(style); }; AddStyle("#leftnav {display:none}"); AddStyle("#center_col {margin-left:0}"); AddStyle("#foot div {display:none}") AddStyle("#foot #navcnt, #foot #fll {display:block}") AddStyle(".tsf-p table {border-bottom:0 !important}")