您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Order and Summarize Bids (CMT Microsoft Research)
// ==UserScript== // @name CMTBiddingHelper // @description Order and Summarize Bids (CMT Microsoft Research) // @namespace notableTieView // @include https://cmt.research.microsoft.com/*/Protected/Reviewer/ManageBidsByRelevance.aspx // @version 1 // @grant none // @require https://code.jquery.com/jquery-2.1.4.min.js // ==/UserScript== lastPos = [0,0,0,0]; lines=$('#ctl00_cph_bidsByRelevance_submissionsByRelevance_gviewSubmissions tbody tr'); $('#ctl00_cph_bidsByRelevance_submissionsByRelevance_lblCounter').after('<div style="padding:10px;"><table id="bidSummary"><tbody><tr><th>Bid</th><th>Count</th></tr></tbody></table></div>'); lastLine = lines.eq(0); for (i=3; i>-1; i--) { // there are 4 bids (0-3) and the status not entered bidLines=$(lines).filter(function (index) { return $(this).find('td').eq(5).children('label').text().indexOf(i) == 0; }); bidLines.remove(); $(lastLine).after(bidLines); lastLine=bidLines.last(); currLabel=$(lastLine).find('td').eq(5).children('label').first().clone(); addLine=$("<tr>"); addLine.append("<td>"); addLine.append("<td>"); addLine.children('td').first().append(currLabel); addLine.children('td').last().html(bidLines.length); addLine.children('td').last().attr("align", "right") $('#bidSummary tr').last().after(addLine); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址