// ==UserScript== // @name Safari google 重定向,避免多点击一次跳转 // @namespace http://tampermonkey.net/ // @version 0.1 // @description google cn 2 google hk // @author windherd // @include http://www.google.com.hk/* // @include https://www.google.hk/* // @include http://www.google.cn/* // @include https://www.google.cn/* // @run-at document-start // @license MIT // @downloadURL none // ==/UserScript== document.location.href = document.location.href.replace('www.google.cn','www.google.com.hk/');