Google: Skip Country Sites

Re-redirect back to Google.com when you are taken to your local Google domain despite having sent request to Google.com

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Google: Skip Country Sites
// @namespace   yama-masa.com
// @description Re-redirect back to Google.com when you are taken to your local Google domain despite having sent request to Google.com
// @include     https://*.google.tld/*
// @exclude     https://*.google.com/*
// @noframes
// @version     1.00
// @grant       none
// ==/UserScript==
// Note: When your browser have sent request to your local Google domain such as google.de, google.com.au, etc., the link to google.com ("Use Google.com", for example) doesn't appear in the footer area. This script will do nothing in such a case.
(function() {
    "use strict";
    var xPath = "descendant::a[@class='_Gs' and contains(text(),'Google.com')]";
    var link2Com = document.evaluate(xPath, document.body, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
    if (link2Com !== null) {
        var modURL = link2Com.href.replace(/&ei=[-\w]+/, ""); // Remove malicious parameter, probably used for tracking
        var win = window.location.replace(modURL);
    }
})();