Created
October 6, 2011 06:02
-
-
Save nkmrgk/1266639 to your computer and use it in GitHub Desktop.
Google Instant Previews Killer for Greasemonkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Instant Previews Killer | |
// @namespace http://nkmrgk.tumblr.com/ | |
// @include http://*.google.*/* | |
// @version 1.0.0 | |
// ==/UserScript== | |
(function(){ | |
var d=window.document; | |
d.documentElement.appendChild(d.createElement('style')); | |
var s=d.styleSheets; | |
s[s.length-1].insertRule('.vspib {display:none !important}',0); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment