// ==UserScript== // @author alpha // @name 淘宝卖家评价助手 // @description 淘宝卖家自动评价助手 // @include *//trade.taobao.com/trade/itemlist/list_sold_items.htm?action=itemlist/SoldQueryAction&event_submit_do_query=1&* // @include *//rate.taobao.com/remarkBuyer.jhtml* // @include *//rate.taobao.com/remarkBuyer.htm // @version 0.5 // @grant none // @namespace http://tampermonkey.net/ // @downloadURL none // ==/UserScript== // 页面载入后开始提交 window.onload =function(){ if(location.pathname == '/trade/itemlist/list_sold_items.htm'){ setTimeout(function(){}, 2600); getRateHref() }else if(location.pathname == '/remarkBuyer.jhtml'){ setTimeout(function(){}, 1000); autorate() }else if(location.pathname == '/remarkBuyer.htm'){ location.href = 'https://trade.taobao.com/trade/itemlist/list_sold_items.htm?action=itemlist/SoldQueryAction&event_submit_do_query=1&commentStatus=I_HAS_NOT_COMMENT&tabCode=waitRate'; } } //获取第一个待评价的链接 function getRateHref(){ var listrate = document.querySelectorAll('a'); for (var i=0; i