您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
青海大学计算机系思想品德评定自动填写~
当前为
// ==UserScript== // @name 青海大学计算机系思想品德评定自动填写 // @namespace https://www.onlinecode.cn/ // @version 1.1 // @description 青海大学计算机系思想品德评定自动填写~ // @author Lee // @match *://49.209.80.139:8080/student/moral_mark // @grant none // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.js // @run-at document-end // ==/UserScript== (function() { 'use strict'; // Your code here... $("input").each(function(){ if(this.value!="提交") { if(this.name == "score1" || this.name == "score2" || this.name == "score3" || this.name == "score4") { this.value="15"; } else { this.value="10"; } } }); $("input").each(function(){ if(this.value=="提交") { this.click(); } }); })();