Click Title bar to reset all
当前为
// ==UserScript==
// @name Massive Reset for Lon-Capa
// @namespace Peijun Zhu
// @description Click Title bar to reset all
// @include http://nplq1.phyast.pitt.edu/adm/grades
// @version 1
// @grant none
// ==/UserScript==
function resetAll() {
l = document.getElementsByTagName('select');
for (index = 0; index < l.length; ++index) {
if (!l[index].value) {
l[index].value = 'reset status';
// l[index].onchange();
}
}
}
var tit = document.getElementsByClassName('LC_hcell') [2];
tit.textContent += ' (Click to Reset)';
tit.onclick = resetAll;