手机版百度重定向电脑版百度

当浏览器UA非手机UA时,将手机版百度搜索重定向成电脑版百度搜索

// ==UserScript==
// @name         手机版百度重定向电脑版百度
// @version      1.0
// @description  当浏览器UA非手机UA时,将手机版百度搜索重定向成电脑版百度搜索
// @author       ChatGPT
// @match        *://m.baidu.com/*&word=*
// @run-at       document-start
// @grant        none
// @namespace https://greasyfork.org/users/452911
// ==/UserScript==

(function() {
    'use strict';
    
    // 获取当前的 URL
    var currentUrl = window.location.href;
    
    // 获取浏览器的 User-Agent
    var userAgent = navigator.userAgent;
    
    // 只有在 URL 包含 "&word=" 且 UA 不包含 "Mobile" 时才替换
    if (currentUrl.includes('&word=') && !userAgent.includes('Mobile')) {
        // 替换 m.baidu.com 为 www.baidu.com
        var newUrl = currentUrl.replace('m.baidu.com', 'www.baidu.com');
        
        // 如果 URL 被修改,则重定向到新的 URL
        if (newUrl !== currentUrl) {
            window.location.href = newUrl;
        }
    }
})();