Greasy Fork

Greasy Fork is available in English.

京东移动端跳转到电脑端商品页

自动将京东移动端商品链接跳转到电脑端链接,方便电脑浏览。

// ==UserScript==
// @name         京东移动端跳转到电脑端商品页
// @namespace    https://jd.com/
// @version      1.0
// @description  自动将京东移动端商品链接跳转到电脑端链接,方便电脑浏览。
// @match        https://item.m.jd.com/product/*
// @run-at       document-start
// @grant        none
// @license      MIT

// ==/UserScript==

(function () {
    'use strict';
    // 从当前 URL 中提取商品 SKU ID
    const match = location.pathname.match(/\/product\/(\d+)\.html/);
    if (match && match[1]) {
        const skuId = match[1];
        const pcUrl = `https://item.jd.com/${skuId}.html`;
        location.replace(pcUrl);
    }
})();