实现校园网的自动退出
// ==UserScript==
// @name 湖南信息职业技术学院 校园网自动退出
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 实现校园网的自动退出
// @author eqs
// @match *://*.baidu.com/*
// @match *://*.google.com/*
// @match *://*.bing.com/*
// @match *://*.so.com/*
// @match *://*.zhihu.com/*
// @match *://*.douban.com/*
// @match *://*.weibo.com/*
// @match *://twitter.com/*
// @match *://*.youtube.com/*
// @match *://*.bilibili.com/*
// @match https://www.hniu.com/
// @match http://10.253.0.1
// @match http://10.253.0.1/a79.htm
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @require https://code.jquery.com/ui/1.12.1/jquery-ui.js
// @grant none
// ==/UserScript==
setTimeout(function(){
window.location.href = 'http://10.253.0.1/a79.htm';
document.querySelector("#edit_body > div:nth-child(1) > div.edit_loginBox.ui-resizable-autohide > form > input").click();;
document.querySelector("#layui-layer1 > div.layui-layer-btn.layui-layer-btn- > a.layui-layer-btn0").click();;
;},4000);