// ==UserScript== // @name Safari google 重定向 // @version 2021.03.18.1207 // @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 // @downloadURL none // ==/UserScript== var re = /google\.cn\/*/; window.location.href = window.location.href.replace(re, 'google.com/')