手机版京东跳转电脑

访问到手机版京东时重定向到电脑版并去除跟踪参数

// ==UserScript==
// @name         手机版京东跳转电脑
// @namespace    https://tampermonkey.net/
// @version      0.1
// @description  访问到手机版京东时重定向到电脑版并去除跟踪参数
// @author       JSSM
// @match        *://*.item.m.jd.com/product/*.html*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 当页面加载完成后执行重定向
    window.onload = function() {
        // 提取当前URL中的商品ID
        var currentUrl = window.location.href;
        var itemIdMatch = currentUrl.match(/product\/([^/]+)\.html/i);

        if (itemIdMatch && itemIdMatch[1]) {
            // 构造新的标准JD商品页面URL
            var itemId = itemIdMatch[1];
            var newUrl = 'https://item.jd.com/' + itemId + '.html';

            // 执行重定向
            window.location.href = newUrl;
        }
    };
})();