Greasy Fork

Greasy Fork is available in English.

平顶山学院校园网自动登陆

功能较少,还在学习中!

当前为 2021-06-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         平顶山学院校园网自动登陆
// @namespace    http://ling_yue.gitee.io/
// @version      0.5
// @description  功能较少,还在学习中!
// @author       凌
// @match        http://10.0.8.2/*
// @grant        none
// ==/UserScript==

//账户信息
var Account = '校园网账号';//校园网账号
var Password = '校园网密码';//校园网密码

(function() {
		document.querySelector("#username").value=Account;
		document.querySelector("#password").value=Password;
		document.querySelector("#login").click();

})();