Greasy Fork is available in English.

逃离百度

try to take over the world!

// ==UserScript==
// @name         逃离百度
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.baidu.com/
// @grant        none
// ==/UserScript==ss

(function() {
    'use strict';
    //you can replace the url;
    location.href = 'http://www.google.com'
    // Your code here...
})();