南航评教自动填充分数(南京航空航天大学)NUAA

南京航空航天大学评教自动填充分数

// ==UserScript==
// @name         南航评教自动填充分数(南京航空航天大学)NUAA
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  南京航空航天大学评教自动填充分数
// @author       五院小辣鸡
// @match        http://nwp.nuaa.edu.cn/*
// @icon         https://www.google.com/s2/favicons?domain=nuaa.edu.cn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    document.querySelector("#SI0").value=10
    document.querySelector("#SI1").value=10
    document.querySelector("#SI2").value=8
    document.querySelector("#SI3").value=10
    document.querySelector("#SI4").value=10
    document.querySelector("#SI5").value=10
    document.querySelector("#SI6").value=10
    document.querySelector("#SI7").value=10
    document.querySelector("#SI8").value=5
    document.querySelector("#SI9").value=10
    document.querySelector("#SI10").value=5
})();