谷歌 cn 重定向

自动从 google.cn 跳转到 google.com

  1. // ==UserScript==
  2. // @name 谷歌 cn 重定向
  3. // @version 0.0.1
  4. // @description 自动从 google.cn 跳转到 google.com
  5. // @match *://*.google.cn/*
  6. // @run-at document-start
  7. // @noframes
  8. // @namespace https://gf.qytechs.cn/users/1386584
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13. const url = new URL(location);
  14. url.hostname = 'www.google.com';
  15. location.replace(url);
  16. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址