No SearchWiki

By gantt Last update Feb 24, 2009 — Installed 5,177 times. Daily Installs: 0, 1, 1, 1, 1, 1, 6, 0, 3, 0, 1, 3, 2, 0, 3, 0, 1, 2, 0, 2, 0, 0, 1, 0, 2, 4, 0, 0, 0, 1, 0, 0

There are 4 previous versions of this script.

// ==UserScript==
// @name           No SearchWiki
// @namespace      http://googlesystem.blogspot.com/
// @description    The script hides Google SearchWiki features.
// @include        http://www.google.com/search?*
// ==/UserScript==

(function () {
    var style = document.createElement('style');
    style.type = "text/css";
    style.innerHTML = "#wml,.w10,.w20,.wcd,.wci,.wce{display:none!important}";
    var head = document.getElementsByTagName('head')[0];
    if (head) {
       head.appendChild(style);
    }
})();