您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在桌面电脑上,打开移动端分享的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 result; if((result = (new RegExp(/\/product\/(\d+)\.html/,'i')).exec(location.pathname)) !== null) { location.href='https://item.jd.com/'+result[1]+'.html'; } })();