🏠 Home 

#东移动URL自动跳转为桌面URL

在桌面电脑上,打开移动端分享的URL,自动跳转到桌面URL


Install this script?
  1. // ==UserScript==
  2. // @name #东移动URL自动跳转为桌面URL
  3. // @namespace http://mozl.net
  4. // @version 0.91
  5. // @description 在桌面电脑上,打开移动端分享的URL,自动跳转到桌面URL
  6. // @author Mozl
  7. // @include http*://item.m.jd.com/product/*.html*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. var r###lt;
  14. if((r###lt = (new RegExp(/\/product\/(\d+)\.html/,'i')).exec(location.pathname)) !== null)
  15. {
  16. location.href='https://item.jd.com/'+r###lt[1]+'.html';
  17. }
  18. })();