自动从 google.cn 跳转到 google.com
// ==UserScript==
// @name 谷歌 cn 重定向
// @version 0.0.1
// @description 自动从 google.cn 跳转到 google.com
// @match *://*.google.cn/*
// @run-at document-start
// @noframes
// @namespace https://greasyfork.org/users/1386584
// ==/UserScript==
(function () {
'use strict';
const url = new URL(location);
url.hostname = 'www.google.com';
location.replace(url);
})();