您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在京东浏览商品时,可选择自动为你勾选 [京东配送]、[仅显示有货]、[销量排序]。方便实用!
当前为
// ==UserScript== // @name 自动京东配送 // @name:zh-CN 自动京东配送 // @name:zh-TW 自動京東配送 // @description 在京东浏览商品时,可选择自动为你勾选 [京东配送]、[仅显示有货]、[销量排序]。方便实用! // @description:zh-CN 在京东浏览商品时,可选择自动为你勾选 [京东配送]、[仅显示有货]、[销量排序]。方便实用! // @description:zh-TW 在京東瀏覽商品時,可選擇自動為你勾選 [京東配送]、[僅顯示有貨]、[銷量排序]。方便實用! // @author Moshel // @namespace https://hzy.pw // @homepageURL https://hzy.pw/p/1349 // @supportURL https://github.com/h2y/link-fix // @icon https://hzy.pw/wp-content/uploads/2015/04/i.jpeg // @license GPL-3.0 // @include *//search.jd.com/* // @include *//www.jd.com/pinpai/* // @include *//list.jd.com/list.html?* // @grant none // @run-at document-start // @version 2.4.0 // @modified 02/07/2018 // ==/UserScript== ! function() { // get GET attributes const $_GET = (function(){ let url = location.search; let u = url.split("?", 2); if(typeof(u[1]) === "string"){ u = u[1].split("&"); let get = {}; for(let i=0; i<u.length; i++) { let j = u[i].split("="); get[j[0]] = j[1]; } return get; } else return {}; })(); let href = location.search; //搜索自营 if ($_GET.keyword && decodeURIComponent($_GET.keyword).indexOf('自营')<0 && !window.sessionStorage['auto_jd_changed_keyword'] ) { href = href.replace($_GET.keyword, $_GET.keyword + ' 自营' ); window.sessionStorage['auto_jd_changed_keyword'] = true; } // 有货 if (!$_GET.stock) href += "&stock=1"; // 京东配送 if (!$_GET.wtype) href += "&wtype=1"; // 销量排序 if (!$_GET.psort) href += "&psort=3"; /*某些分类页面*/ if(!$_GET.sort) href += "&sort=sort_totalsales15_desc"; if(location.search != href) location.search = href; }();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址