Greasy Fork

Greasy Fork is available in English.

京东热卖跳转

re.jd.com自动跳转item.jd.com

目前为 2016-06-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         京东热卖跳转
// @version      0.1
// @description  re.jd.com自动跳转item.jd.com
// @author       You
// @match        http://re.jd.com/*
// @grant        none
// @run-at document-start
// @namespace http://greasyfork.icu/users/49924
// ==/UserScript==

var url = location.href;
var index1 = url.indexOf(".html");
var index2 = url.lastIndexOf("/", index1);
location.replace("http://item.jd.com" + url.substring(index2,index1) + ".html");