Greasy Fork is available in English.

Redirect Google CN

Redirect Google CN to Google Global!

// ==UserScript==
// @name        Redirect Google CN
// @namespace   https://github.com/darkatse
// @version     0.12
// @description Redirect Google CN to Google Global!
// @author      techstay
// @match       *://*.google.cn/*
// @grant       none
// @run-at      document-start
// ==/UserScript==


var newHost     = window.location.host.replace (/\.cn$/, ".com");
var newURL      = window.location.protocol + "//" +
    newHost                         +
    window.location.pathname        +
    window.location.search          +
    window.location.hash
;
window.location.replace (newURL);