// ==UserScript== // @name Google Card-Style UI // @description Greatly Beautify Google UI! // @author Fei Sun // @version 1.2.6 // @include http://www.google.*/* // @include https://www.google.*/* // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue // @grant GM_xmlhttpRequest // @namespace https://greasyfork.org/users/35010 // @downloadURL none // ==/UserScript== /*jshint multistr: true */ var cssblock=document.createElement("div"); var csstext=``; cssblock.innerHTML=csstext; (function () { if (window.location.href.search('tbm=isch')==-1) { document.body.appendChild(cssblock);} document.getElementById("lst-ib").addEventListener("blur",function () { document.querySelector("div.gstl_0.sbdd_a").style.cssText='display:none'; }); document.getElementById("lst-ib").addEventListener("focus",function () { document.querySelector("div.gstl_0.sbdd_a").style.cssText='display:block'; }); })();