不上百度

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

目前为 2021-03-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         NoBaidu
// @name:zh-CN   不上百度
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Jump to Google when visit Baidu.
// @description:zh-cn   在访问百度的时候跳到 Google。
// @author       Kevin Guo
// @match        https://*.baidu.com/*
// @grant        none
// ==/UserScript==
 
(function() {
    'use strict';
    window.location = "https://www.google.com/";
})();