NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GoogleBeautifulAdder // @namespace Make Google more beautiful // @description Add new styles and remove many unuseful stuff from google. // @include * // @author Tommaso Celano // @version 0.0.2-alphabuild // ==/UserScript== // ==OpenUserJS== // @updateURL https://openuserjs.org/meta/vecchiotom/GoogleBeautifulAdder.meta.js // @author vecchiotom // ==/OpenUserJS== function $(id) { return document.getElementById(id); } function clearInterface(){ $('viewport').style.background = "url(https://images7.alphacoders.com/351/351342.jpg) top left no-repeat"; $('hplogo').title = 'Now Google is more beautiful'; $('lst-ib').value = "Make a beautiful search!!!"; $('fbar').style.margin = '550px auto'; $('fbar').innerHTML = '<input type="submit" value="Search .gif images" style=" margin: 0 auto;"><input type="submit" value="Search .jpg images" style=" margin: 0 auto;"><input type="submit" value="Search .jpg images" style=" margin: 0 auto;"><input type="submit" value="Search .jpg images" style=" margin: 0 auto;"><input type="submit" value="Search .jpg images" style=" margin: 0 auto;">' } clearInterface();