// ==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 // @include http://homework.phyast.pitt.edu/adm/grades // @version 1 // @grant none // @downloadURL 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;