百度伪装谷歌

谷歌一下,你就知道

目前为 2019-04-25 提交的版本。查看 最新版本

// ==UserScript==
// @name         百度伪装谷歌
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  谷歌一下,你就知道
// @author       iHelin
// @match        *://www.baidu.com*
// @grant        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 搜索';
    }

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址