在桌面电脑上,打开移动端分享的URL,自动跳转到桌面URL
- // ==UserScript==
- // @name #东移动URL自动跳转为桌面URL
- // @namespace http://mozl.net
- // @version 0.91
- // @description 在桌面电脑上,打开移动端分享的URL,自动跳转到桌面URL
- // @author Mozl
- // @include http*://item.m.jd.com/product/*.html*
- // @grant none
- // @run-at document-start
- // ==/UserScript==
- (function() {
- 'use strict';
- var r###lt;
- if((r###lt = (new RegExp(/\/product\/(\d+)\.html/,'i')).exec(location.pathname)) !== null)
- {
- location.href='https://item.jd.com/'+r###lt[1]+'.html';
- }
- })();