您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在淘宝天猫浏览商品时,自动为你首选 [按销量排序]。方便实用!
当前为
// ==UserScript== // @name Sort by Sales in Taobao // @name:zh-CN 淘宝销量排序 // @name:zh-TW 淘寶銷量排序 // @namespace http://hzy.pw // @description In Tmall or Taobao, automatically for you first choice [by sales order]. Convenient and practical! // @description:zh-CN 在淘宝天猫浏览商品时,自动为你首选 [按销量排序]。方便实用! // @description:zh-TW 在淘寶天貓瀏覽商品時,自動為妳首選 [按銷量排序]。方便實用! // @authuer Moshel // @homepageURL http://hzy.pw/p/1364 // @license Apache License 2.0 // @supportURL http://weibo.com/moshel // @icon http://hzy.pw/wp-content/uploads/2015/08/i-300x300.jpg // @include /^https?://s.taobao.com/search\?.+/ // @include /^https?://list.tmall.com/search_product.htm\?.+/ // @grant none // @run-at document_start // @date 08/05/2015 // @modified 06/11/2016 // @version 1.4.2 // ==/UserScript== ! function() { "use strict"; var href = location.search; /* 天猫搜索 */ if (location.hostname === "list.tmall.com" && href.indexOf("sort=") < 0) href += "&sort=d"; /* 淘宝搜索 */ else if (location.hostname === "s.taobao.com" && href.indexOf("sort=") < 0) href += "&sort=sale-desc"; /* 天猫淘宝店铺内搜索&分类浏览 else if (location.search && href.indexOf("orderType=") < 0) href += "&orderType=hotsell_desc"; */ else return; /* 进行跳转 */ if (href !== location.search) location.search = href; }();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址