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

感情迁移 提交于 2019-12-05 02:32:22

图书馆的油猴脚本来了

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!