Skip to content

Instantly share code, notes, and snippets.

@nkmrgk
Created October 6, 2011 06:02
Show Gist options
  • Save nkmrgk/1266639 to your computer and use it in GitHub Desktop.
Save nkmrgk/1266639 to your computer and use it in GitHub Desktop.
Google Instant Previews Killer for Greasemonkey
// ==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