您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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); } })();