automatic-gdufe

广财校园网自动填写账号密码!需要自行修改此配置文件

目前为 2021-10-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         automatic-gdufe
// @namespace    nothing
// @version      1.0
// @description  广财校园网自动填写账号密码!需要自行修改此配置文件
// @author       cloudstream
// @include      http://100.64.13.17/a79.htm?wlanacip=100.64.13.18
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var account = '12345678';//这里的数字换成你的学号
    var code = '123456';//这里的数字换成你的密码
    setTimeout(function(){
        var content = window.document.querySelectorAll('.edit_lobo_cell');
        for(var i=0; i<content.length; i++){
            var item = content[i];
            if(item==null) console.log("Ohooo, failed to get the content....");
            else {
                var slot = item.getAttribute('name');
                if(slot=='DDDDD') item.value = account;
                if(slot=='upass') item.value = code;
            }
        }
     }, 1000);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址