EOM

Make more money!

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         EOM
// @namespace    http://tampermonkey.net/ EOM
// @version      0.2.1.1
// @description  Make more money!
// @author       Bboy Tech
// @match        https://moretvtime.com/*
// @grant        none
// ==/UserScript==
 
(function() {
    this.$ = this.jQuery = jQuery.noConflict(true);
    var claimTimer = setInterval (function() {claim(); }, Math.floor(Math.random() * 1000) + 2000);
    var claimbTimer = setInterval (function() {claimb(); }, Math.floor(Math.random() * 5000) + 6000);
    var refreshTimer = setInterval (function() {refresh(); }, Math.floor(Math.random() * 6000) + 7000);
    function claim(){
        document.elementFromPoint(680, 370).click();
    }
    function claimb(){
        document.getElementsByClassName("sc-survey-navigation btn disabled btn-success")[0].click();
    }
    function refresh(){
          document.elementFromPoint(770, 280).click(); document.elementFromPoint(775, 310).click(); var href = $('.btn .btn-sucess').click();
    }
})();