IThome 手機版文章重新導向

將手機版 URL 重新導向到桌面版本。iThome 官網不做我只好自己寫了。

// ==UserScript==
// @name         IThome 手機版文章重新導向
// @namespace    https://ithelp.ithome.com.tw/
// @version      1.0
// @description  將手機版 URL 重新導向到桌面版本。iThome 官網不做我只好自己寫了。
// @author       Elvis Mao
// @match        https://ithelp.ithome.com.tw/m/articles/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (window.location.pathname.startsWith('/m/articles/')) {
        let newUrl = window.location.href.replace('/m/articles/', '/articles/');
        window.location.replace(newUrl);
    }
})();

QingJ © 2025

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