// ==UserScript== // @name Free Faucet Unlimited Bitcoin (BTC) // @namespace http://tampermonkey.net/ // @version 0.2 // @description Unlimited BTC to FaucetPay // @author Jean // @match https://nitrofaucet.nity.fr/client/faucet.php // @icon https://www.google.com/s2/favicons?domain=nity.fr // @grant none // ==/UserScript== /* Use this Hcaptcha solver: https://greasyfork.org/es/scripts/425854-hcaptcha-solver-automatically-solves-hcaptcha-in-browser */ (function() { 'use strict'; // Your code here... setInterval(function() { if (document.querySelector(".h-captcha")) { if (document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0){ document.querySelector("#claimButton").click(); setTimeout(function() { window.location.reload(); }, 1000); } } }, 5000); })();