不上百度

在访问百度的时候跳到 Google。

  1. // ==UserScript==
  2. // @name NoBaidu
  3. // @name:zh-CN 不上百度
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.2
  6. // @description Jump to Google when visit Baidu.
  7. // @description:zh-cn 在访问百度的时候跳到 Google。
  8. // @author Kevin Guo
  9. // @match https://www.baidu.com/
  10. // @grant none
  11. // ==/UserScript==
  12. (function() {
  13. 'use strict';
  14. window.location = "https://www.google.com/";
  15. })();

QingJ © 2025

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