Google搜索的网页手机版转电脑版

目前只匹配了豆瓣,微博和贴吧

// ==UserScript==
// @name         Google搜索的网页手机版转电脑版
// @namespace    http://tampermonkey.net/
// @version      20250909.1
// @description  目前只匹配了豆瓣,微博和贴吧
// @author       leone
// @match        https://m.douban.com/*
// @match        https://m.weibo.cn/*
// @match        https://waptieba.baidu.com/*
// @match        https://wapforum.baidu.com/*
// @license      GPL-3.0 License
// @grant        none
// ==/UserScript==

(function() {
    if (document.URL.includes('m.douban.com')) {
        window.location.replace(document.URL.replace(/https:\/\/(.*?)\.(.*)/, 'https://www.$2'));
    }
    else if (document.URL.includes('m.weibo.cn')) {
        window.location.replace(document.URL.replace(/https:\/\/(.*?)\.(.*?)\.cn(.*)/, 'https://www.$2.com$3'));
    }
    else if (document.URL.includes('waptieba.baidu.com')) {
        window.location.replace(document.URL.replace(/https:\/\/wap(.*)/, 'https://$1'));
    }
    else if (document.URL.includes('wapforum.baidu.com')) {
        window.location.replace(document.URL.replace(/https:\/\/wapforum(.*)/, 'https://tieba$1'));
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址