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