// ==UserScript== // @name 上海大学一键教学评估 // @namespace chinggg // @version 0.1 // @description 自动完成上海大学教学评估,默认设置为最高值 // @author chinggg // @match *://cj.shu.edu.cn/StudentPortal/Evaluate // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let collection = document.getElementsByTagName('select'); for(let item of collection) { item.value=25; } })();