您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
广东农工商职业技术学院 学生上网认证系统 自动认证脚本
当前为
// ==UserScript== // @name 农工商自动认证 - 天翼客户端/移动线路 // @namespace // @version 1.1 // @description 广东农工商职业技术学院 学生上网认证系统 自动认证脚本 // @author Rainbrony // @include *://10.6.1.3/* // @include *://125.88.59.131:* // @include *://221.179.9.21:* // @grant none // ==/UserScript== (function() { var acc = { 账号: "改成你的学号", 密码: "身份证后六位" } 'use strict'; if (window.location.pathname == "/portalAuthAction.do" ) { window.opener=null; window.open("",'_self',""); window.close(); } else if (window.location.host == "125.88.59.131:10001") { window.opener=null; window.open("",'_self',""); window.close(); } else if (window.location.host == "221.179.9.21") { window.close(); } else if (window.location.pathname == "/portal.do" ) { document.getElementById("useridtemp").value = acc.账号; document.getElementById("passwd").value = acc.密码; document.getElementsByClassName("btnlogin")[0].click(); //idbox.value = acc.账号; //pw.value = acc.密码; //btn[0].click(); } })();