您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Freeze the time for MANUU Authentication Page
// ==UserScript== // @name MANUU INTERNET Authentication Freezer // @namespace http://tampermonkey.net/ // @version 0.2 // @description Freeze the time for MANUU Authentication Page // @author Suhail Akhtar ([email protected]) // @website http://suhail.cu.cc // @include http://10.10.10.10:1000/* // @grant none // ==/UserScript== countDown= function(){ console.info('MANUU INTERNET Authentication Freezer Initialized'); console.info('Enjoy - by Suhail Akhtar [email protected] '); setInterval(function(){ window.location.reload(); },50000); }; document.onload = countDown;