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

图书馆的油猴脚本来了

// 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();
})();

posted @ 2019-11-20 15:28  还没有女朋友的执念  阅读(646)  评论(0编辑  收藏  举报