【购物必备】京东自营(配送)自动勾选

方便在京东商品时自动勾选京东自营(配送)

נכון ליום 22-03-2016. ראה הגרסה האחרונה.

// ==UserScript==
// @name         【购物必备】京东自营(配送)自动勾选
// @description  方便在京东商品时自动勾选京东自营(配送)
// @version      0.13
// @author      jO9GEc
// @license      MIT
// @match        http://search.jd.com/*
// @match        http://list.jd.com/*
// @grant        none
// @run-at       document-body
// @namespace https://greasyfork.org/users/14035
// ==/UserScript==

if(!/wtype=1/.test(window.location.href)) window.location.href = window.location.href + '&wtype=1';
if(!/delivery=1/.test(window.location.href)) window.location.href = window.location.href + '&delivery=1';
if(!/stock=1/.test(window.location.href)) window.location.href = window.location.href + '&stock=1';
if(!/sort=1/.test(window.location.href)) window.location.href = window.location.href + '&sort=sort_totalsales15_desc';