Greasy Fork is available in English.

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

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

目前为 2016-03-22 提交的版本。查看 最新版本

// ==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';