农工商自动认证 - 电信8M

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

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

(function() {
    var acc = {
        账号: "改成你的学号",
        密码: "身份证后六位"
    }
    'use strict';
    if (window.location.pathname == "/portalAuthAction.do" ) {
        window.close();
    }
    else if (window.location.pathname == "/portal.do" ) {
        document.getElementById("useridtemp").value = acc.账号;
        document.getElementById("passwd").value = acc.密码;
        document.getElementsByClassName("btnlogin")[0].click();
    }
})();