重定向网页版网站

澎湃新闻,喜马拉雅,界面新闻

当前为 2024-11-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         重定向网页版网站
// @namespace    https://gf.qytechs.cn
// @version      1.0
// @description  澎湃新闻,喜马拉雅,界面新闻
// @match        https://m.thepaper.cn/*
// @match        https://m.huxiu.com/*
// @match        https://m.jiemian.com/*
// @match        https://m.ximalaya.com/*
// @match        m.dongqiudi.com/*
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Define a map of mobile to desktop hostnames
    const siteMap = {
        "m.thepaper.cn": "thepaper.cn",
        "m.huxiu.com": "huxiu.com",
        "m.jiemian.com": "jiemian.com",
        "m.ximalaya.com": "www.ximalaya.com",
        "m.dongqiudi.com":"www.dongqiudi.com"
    };

    // Check if the current hostname is in the siteMap and redirect if needed
    const desktopHostname = siteMap[location.hostname];
    if (desktopHostname) {
        location.replace(location.href.replace(location.hostname, desktopHostname));
    }
})();

QingJ © 2025

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