// ==UserScript== // @name 将京东手机版网页转换为PC版网页 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 将京东手机版网页转换为 PC 版网页,并清洗返利链接 // @author owovo // @match *://item.m.jd.com/* // @grant none // @downloadURL none // ==/UserScript== (function(){ if (document.URL.match(/\d+/)>0) { location.href="//item.jd.com/"+document.URL.match(/\d+/)+".html"; } })();