https://ouo.io/NrKl5U
// ==UserScript==
// @name topfaucet.click : Auto Faucet (NOT PAYING)
// @namespace topfaucet.click.auto.faucet
// @version 1.2
// @description https://ouo.io/NrKl5U
// @author stealtosvra
// @match https://topfaucet.click/*
// @icon https://topfaucet.click/Images/Logo.png
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function hCaptcha() {return grecaptcha && grecaptcha.getResponse().length !== 0;}
setInterval(function() {if (hCaptcha()) {
document.querySelectorAll("button[type='button']")[1].click();}}, 5000);
})();