您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
解除锐捷睿易路由器 EWEB 登录次数限制
// ==UserScript== // @name RuijieRouterBypass // @namespace Violentmonkey Scripts // @match http://192.168.110.1/* // @grant none // @version 0.1 // @license WTFPL // @description 解除锐捷睿易路由器 EWEB 登录次数限制 // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { if (typeof loginNum !== 'undefined' && typeof loginTime !== 'undefined') { loginNum = 0; loginTime = Math.floor(new Date().getTime() / 1000); console.log('Login limit bypassed. loginNum:', loginNum, 'loginTime:', loginTime); } else { console.log('loginNum or loginTime not found in the global scope.'); } }); })();