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

目前只匹配了豆瓣和微博

// ==UserScript==
// @name         Google搜索的网页手机版转电脑版
// @namespace    http://tampermonkey.net/
// @version      2024-02-10
// @description  目前只匹配了豆瓣和微博
// @author       leone
// @match        https://m.douban.com/*
// @match        https://m.weibo.cn/*
// @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'));
    }
})();