京东手机端链接转网页链接

try to take over the world!

// ==UserScript==
// @name         京东手机端链接转网页链接
// @namespace    http://item.m.jd.com/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://item.m.jd.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    location.href = location.href.replace(/\.m|product\/|\?.*/g,'')
    // Your code here...
})();