CMTBiddingHelper

Order and Summarize Bids (CMT Microsoft Research)

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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);
}