您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Re-redirect back to Google.com when you are taken to your local Google domain despite having sent request to Google.com
// ==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); } })();