农工商自动认证

广东农工商职业技术学院 学生上网认证系统 自动认证脚本

目前为 2021-03-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         农工商自动认证
// @namespace    
// @version      1.0
// @description  广东农工商职业技术学院 学生上网认证系统 自动认证脚本
// @author       Rainbrony
// @match        *://10.6.1.3/*
// @include      *://125.88.59.131:*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (window.location.pathname == "/portalAuthAction.do" ) {
        window.close();
    }
    else if (window.location.host == "125.88.59.131:10001") {
        window.close();
    }
    else {
    var idbox = document.getElementById("useridtemp");
    var pw = document.getElementById("passwd");
    var btn = document.getElementsByClassName("btnlogin");
    idbox.value = "改成你的学号";
    pw.value = "身份证后六位";
    btn[0].click();
    }
})();