// ==UserScript== // @name 平顶山学院校园网自动登陆 // @namespace http://ling_yue.gitee.io/ // @version 0.5 // @description 功能较少,还在学习中! // @author 凌 // @match http://10.0.8.2/* // @grant none // @downloadURL none // ==/UserScript== //账户信息 var Account = '校园网账号';//校园网账号 var Password = '校园网密码';//校园网密码 (function() { document.querySelector("#username").value=Account; document.querySelector("#password").value=Password; document.querySelector("#login").click(); })();