// ==UserScript== // @name Google Card-Style UI // @description Greatly Beautify Google UI! // @author Fei Sun // @version 1.0.6 // @include http://www.google.*/* // @include https://www.google.*/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue // @grant GM_xmlhttpRequest // @namespace https://greasyfork.org/users/35010 // @downloadURL none // ==/UserScript== var cssblock=document.createElement("div"); /*jshint multistr: true */ var csstext=""; cssblock.innerHTML=csstext; (function () { console.log(window.location.href.search('tbm=isch')); console.log(window.location.href); if (window.location.href.search('tbm=isch')==-1) { document.body.appendChild(cssblock);} })(); document.body.onhashchange=function () {console.log("d");};