google中文搜索屏蔽繁体

google中文搜索结果中屏蔽繁体

// ==UserScript==
// @name         google中文搜索屏蔽繁体
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  google中文搜索结果中屏蔽繁体
// @author       You
// @run-at       document-start
// @match        *://*.google.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    console.log("start...");


    var str = decodeURI(window.location.toString());
    if(escape(str).indexOf("%u")>=0){

        if (window.location.search.indexOf('lr=lang_zh-CN') != -1) {
             return false; // already added
         }

        window.location = str+"&lr=lang_zh-CN";
    }
})();