Hide Google Instant Previews

By ArpitNext Last update Aug 17, 2011 — Installed 53,730 times.

Add your review

23 reviews


4 stars
It hasn't been updated in a while... , Dec 19, 2012
Review written by BadDreams - see all my reviews (1)

While being an excellent script, it hasn't been updated in a while and has fallen prey to Google updates. So, it no longer works. Fear not, the fix is quite simple - update it yourself.

I'll even provide the code:
var css = ".vspib, .vspii,vspiic, .vspi {display: none !important;} #vsi, #vsic, #vsrs, #botstuff, #vspb {display: none !important;}";

Save and enjoy.

0 comments |

5 stars
Seems to work perfectly so far! , Jan 11, 2012
Review written by Jason 'vanRijn' Kasper - see all my reviews (1)

Just wanted to say thanks. This should hopefully make using Google search tolerable again. =:/

0 comments |

5 stars
great script , Dec 18, 2011
Review written by roronoazoro - see all my reviews (1)

Great Script Buddy
Thank You Very Much
Keep Scripting :)

0 comments |

5 stars
Thank you! , Oct 5, 2011
Review written by LafinJack - see all my reviews (1)

bloop

0 comments |

1 out of 1 person found this review helpful
5 stars
Allows me to use Google search and not pull my hair out , Sep 25, 2011
Review written by bitmap42 - see all my reviews (1)

Working well after the Aug 17 update, hides the preview window and the button completely.

Google changed layouts again mid-September, and now "Cached" and "Similar" links got pushed into the preview window.

Please add this into the css string to return them to their proper location:

.vshid {display:inline; margin-left:7px;}

0 comments |

5 stars
It works! , Sep 23, 2011
Review written by pearlheartgtr - see all my reviews (7)

Thank you! Works perfectly.

0 comments |

5 stars
thanks much , Sep 17, 2011
Review written by 83dawkl - see all my reviews (1)

Love this script -- thanks very much for your August 17th update. I don't like this annoying google "feature" and your script removes it!

thanks again.

0 comments |

1 star
Nice idea, but... , Jul 20, 2011
Review written by Sambo_ - see all my reviews (3)

This script only hides the preview buttons, it doesn't actually stop them working, so the issue of accidentally mousing over them still exists. Fix this and I'll give it 5 stars!

0 comments |

4 stars
here it is working for Opera 11.x , Apr 27, 2011
Review written by SUPER_KEG - see all my reviews (105)

// I changed only the style defininitions a little (so they work on Opera) and also the google site detection

var hostnam = top.location.host;
if (hostnam.indexOf("google.com") != -1 ) {
var css = ".vspib, .vspi {display: none !important;} #vspb {display: none !important;}";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
heads[0].appendChild(node);
}
}
}

0 comments |

4 stars
Almost there. Plus works in Opera :) , Apr 15, 2011
Review written by DomesticUser - see all my reviews (9)

Previews still generated with an onclick function within the search snippet. None the less, a big improvement on this new annoying google feature. Thanks.

Works in Opera 11.01 :)

0 comments |