淘宝自动按销量

在淘宝搜索商品时自动选择按销量排名显示搜索结果

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

// ==UserScript==
// @name				淘宝自动按销量
// @version				0.1
// @description			在淘宝搜索商品时自动选择按销量排名显示搜索结果
// @author				LisonFan
// @match				*://s.taobao.com/*
// @grant				none
// @icon				https://www.taobao.com/favicon.ico
// @homepageURL			http://weibo.com/1912287354
// @supportURL			http://weibo.com/1912287354
// @namespace 			http://weibo.com/1912287354
// ==/UserScript==

(function() {
    'use strict';
	
	var href = location.search;
	
	if  (href.indexOf("sort") < 0){
		href += "&sort=sale-desc";
	}
	
	if (location.search != href){
        location.search = href;
	}
})();