Redirects from *.cn to *.com
当前为
// ==UserScript==
// @name Safari google 重定向
// @version 2023.02.28.2307
// @description Redirects from *.cn to *.com
// @namespace https://greasyfork.org/en/users/windherd-google
// @include *google.cn/*
// @grant none
// @inject-into auto
// @run-at document-start
// @license MIT
// ==/UserScript==
document.location.href = document.location.href.replace('www.google.cn','www.google.com/');