Greasy Fork is available in English.

Faucethunt Auto

Idi na: https://faucethunt.com?ref=4201 - Sretno!

Verze ze dne 14. 12. 2017. Zobrazit nejnovější verzi.

// ==UserScript==
// @name         Faucethunt Auto
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Idi na: https://faucethunt.com?ref=4201 - Sretno!
// @author       Edib Smail Vejselović
// @match        https://chrome.google.com/webstore/search/tampermonkey?hl=en-US
// @match        https://faucethunt.win/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setInterval( function(){
        if($('#timer').text() === "")
        {
            claimSatoshis();
        }
    },1000);
})();