// ==UserScript== // @name 京东自营自动检测器 // @description 京东搜索商品时自动勾选京东自营 // @version 0.03 // @author Vanilla // @license MIT // @match http://search.jd.com/* // @grant none // @run-at document-body // @require http://libs.baidu.com/jquery/1.9.0/jquery.js // @namespace https://greasyfork.org/users/14035 // @downloadURL none // ==/UserScript== $(function(){ var $dom = $('#J_feature a[data-field="wtype"]'); var isClick = $dom.hasClass('selected'); if(!isClick) $dom.trigger('click'); });