// ==UserScript== // @name 百度伪装谷歌 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description 谷歌一下,你就知道 // @author iHelin // @match *://www.baidu.com* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... document.title="Google"; var s_lg_img = document.getElementById("s_lg_img"); if(s_lg_img){ s_lg_img.src='https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'; s_lg_img.width='272'; s_lg_img.height='92'; } var su = document.getElementById("su"); if(su){ su.value='Google 搜索'; } })();