// ==UserScript== // @name 联通光猫超管登陆 // @namespace https://github.com/luomoxu/UserScript // @version 0.1 // @description 目前测试支持光猫 KD-YUN-811E(北京联通) // @author You // @match http://192.168.1.1/* // @match http://192.168.100.1/* // @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js // @grant unsafeWindow // @downloadURL none // ==/UserScript== (function () { 'use strict'; if ($('title').text() == '中国联通家庭网关') { $(".wrapper_administrtor_passwordbox").after('
') $("#admin_login").on("click", function () { $("#user_name").val('CUAdmin'); $("#loginfrm").submit(); }); console.log(unsafeWindow.authLevel) if (typeof unsafeWindow.authLevel != "undefined") { unsafeWindow.authLevel = 10; } } })();