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;