// ==UserScript== // @name 联通光猫超级管理员登陆 // @namespace https://github.com/monsterzzzz/UserScript // @version 0.1.1 // @description 目前测试支持光猫 KD-YUN-811E(北京联通) 软件版本V1.1.0 // @author monsterzzzz // @match http://192.168.1.1/* // @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js // @grant unsafeWindow // @downloadURL none // ==/UserScript== //部分代码来自https://github.com/luomoxu/UserScript (function () { 'use strict'; if ($('title').text() == '中国联通家庭网关') { $(".wrapper_administrtor_passwordbox").after('
') $("#admin_login").on("click", function () { $("#username").val('CUAdmin'); $("#loginfrm").attr('method','get'); $("#loginfrm").submit(); }); console.log(unsafeWindow.authLevel) if (typeof unsafeWindow.authLevel != "undefined") { unsafeWindow.authLevel = 10; } } })();