MANUU INTERNET Authentication Freezer

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;