healthykk bypass

Bypass healthykk

// ==UserScript==
// @name         healthykk bypass
// @namespace    healthykk Bypass
// @version      0.1
// @description  Bypass healthykk
// @author       DarioGabriel
// @match        http://healthykk.com
// @include      *healthykk.com*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var RETRASO = 0; //DELAY
    var RECARGAR = 0; //RELOAD WEBPAGE IF FAIL 0=DEACTIVATED

    setTimeout(function() {
        var AutoClick = document.getElementById("makingdifferenttimer");
        if (AutoClick !== null)
        {
            AutoClick.click();
        }
    }, RETRASO * 1000);

    if (RECARGAR > 0) setTimeout(function(){ location.reload(); }, RECARGAR*1000);
})();