// ==UserScript== // @name 许昌职业技术学院校园网(自动登录) // @namespace http://tampermonkey.net/ // @version 1.2 // @description 自动登录校园网 // @author HUAJIEN // @match http://222.89.165.34/* // @grant GM_xmlhttpRequest // @license MIT // ==/UserScript== (function() { 'use strict'; // 获取登录表单元素 const usernameInput = document.getElementById('username'); const passwordInput = document.getElementById('password'); const loginButton = document.getElementById('login-account'); // 填写账号密码 usernameInput.value = '这是校园网账号'; //这里填写账号 passwordInput.value = '这是校园网密码'; //这里填写密码 // _______ // < HUAJI > // ------- // \ / \ //\ // \ |\___/| / \// \\ // /0 0 \__ / // | \ \ // / / \/_/ // | \ \ // @_^_@'/ \/_ // | \ \ // //_^_/ \/_ // | \ \ // ( //) | \/// | \ \ // ( / /) _|_ / ) // | \ _\ // ( // /) '/,_ _ _/ ( ; -. | _ _\.-~ .-~~~^-. // (( / / )) ,-{ _ `-.|.-~-. .~ `. // (( // / )) '/\ / ~-. _ .-~ .-~^-. \ // (( /// )) `. { } / \ \ // (( / )) .----~-.\ \-' .~ \ `. \^-. // ///.----..> \ _ -~ `. ^-` ^-_ // ///-._ _ _ _ _ _ _}^ - - - - ~ ~-- ,.-~ // /.-~ // _ _ _ _ _ _ ___ ____ // | | | | | | | / \ | |_ _| / ___| ___ _ ____ _____ _ __ // | |_| | | | |/ _ \ _ | || | \___ \ / _ \ '__\ \ / / _ \ '__| // | _ | |_| / ___ \ |_| || | ___) | __/ | \ V / __/ | // |_| |_|\___/_/ \_\___/|___| |____/ \___|_| \_/ \___|_| if (usernameInput.value === "这是校园网账号" || passwordInput.value == "这是校园网密码") { //这不用改 alert("请去用户脚本管理器中,找到此脚本的第 20、21 行代码,添加自己的账号与密码"); } else{ // 提交登录 loginButton.click(); // 等待登录完成 setTimeout(() => { // 检查登录状态并执行其他操作 }, 5000); }})();