// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.location = "https://www.google.com/"; })();