跳转到指定 URL

打开百度页面时自动跳转到 指定网页

// ==UserScript==
// @name         跳转到指定 URL
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  打开百度页面时自动跳转到 指定网页
// @author       You
// @match        https://www.baidu.com/
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    // 设置跳转目标 URL
    window.location.href = "https://www.baidu.com/s?wd=%E6%88%91%E6%98%AFSB%E7%8A%AF%E6%B3%95%E5%90%97&rsf=101631101&rsp=2&f=1&rs_src=0&rsv_pq=decd7cbb00886cc8&rsv_t=3afbqLKecQujaoe7PmlHxEJy%2BA7f9KAFbYFhrn8Yg%2FGFQpyauBNJ8N6cuFA&sa=brs_28338_3";
})();