// ==UserScript== // @name 自动连接huuc校园网 // @namespace https://wuminging/linkHUUC // @version 0.1.2 // @description 连接HUUC的校园网 // @author wuminging // @match https://netauth.huuc.edu.cn/* // @license 方便登录较简单无限制 // @require https://code.jquery.com/jquery-3.6.0.min.js // ==/UserScript== const DDDDD = '你的账号'; const upass = '你的密码'; const ISP_select = '1';//中国移动1 中国联通2 (function () { 'use strict'; // Your code here... window.addEventListener('load', function () { if (document.querySelector('head title').textContent === '上网登录页') { const list = document.querySelectorAll('.edit_lobo_cell'); list[1].value = DDDDD; list[2].value = upass; if(document.querySelectorAll('.edit_lobo_cell')[5][1].text==='校园网'){ list[5][1].selected = 'ture'; }else{ list[5][ISP_select].selected = 'ture'; } list[0].click(); } }); })();