// ==UserScript== // @name 校园什么网 // @namespace ucxn // @version 7.1 // @description 明明不远 原创 // @author 明明不远(哥哥科技转载)https://space.bilibili.com/544253177 // @icon https://codeberg.org/Brother-Tech/ZTE-Stat_Max/raw/branch/main/assets/mmby.jpg // @match *://*http://10.224.1.2/eportal/index.jsp?wlanuserip=10.176.42.254&wlanacname=TSXY-HX-18007&ssid=&nasip=10.191.0.1&snmpagentip=&mac=7a8302fd4303&t=wireless-v2-plain&url=http://123.123.123.123/&apmac=&nasid=TSXY-HX-18007&vid=1301&port=97&nasportid=AggregatePort%202.13010000:1301-0/* // @match *://*.10.224.1.2/* // @grant none // @license Apache-2.0 // ==/UserScript== (function() { 'use strict'; // 点击 setInterval(function() { var loginLinkDiv = document.getElementById("loginLink_div"); if (loginLinkDiv) { loginLinkDiv.click(); } }, 1000); // 1秒 'use strict'; // 点击互联网 setInterval(function() { var serviceLink = document.getElementById("_service_0"); if (serviceLink) { serviceLink.click(); setTimeout(function() { location.reload(); }, 5000); // 5秒后刷新网页 } }, 40000); // 40秒 })();