中南大学图书馆自动登录油猴脚本

图书馆的油猴脚本来了

// UserScript
// @name CSULibrary_Login
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http:///
// @match http://libuser.csu.edu.cn/center/ifcuas/*
// @grant none
// /UserScript
var username="图书馆WiFi账号";
var password="图书馆WiFi密码";
(function() {
'use strict';
document.getElementById("userId").value=username;
document.getElementById("password").value=password;
document.getElementsByTagName("form")[0].submit();
})();

原文地址:https://www.cnblogs.com/lxy764139720/p/11898043.html