// ==UserScript==
// @name Free and unlimited Dogecoin script - 30k satoshis per minute (sinobu.online)
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Earn unlimited and free Dogecoin - 30k satoshis per minute - on sinobu.online using this script.
// @author Maksyme
// @license MIT
// @match https://sinobu.online
// @match https://sinobu.online/*
// @grant none
// ==/UserScript==
/*
==================================================================================================================================================
| Before installing this script, make sure you have installed the hCaptcha solver (https://greasyfork.org/en/scripts/425854-hcaptcha-solver |
| - made by engageub. |
| |
| To be able to use the hCaptcha solver, your browser must be in English. |
| If you use a Chrome based browser (Google Chrome, Opera, etc), you must enable experimental features in order to hCaptcha solver works. |
| Open a new tab and type [YOUR_BROWSER]://flags/ (eg: chrome://flags/), search for WebGL Draft Extensions and Override software rendering list, |
| and enable them. |
| |
| This script requires a FaucetPay account, you can register by following this link: https://faucetpay.io/?r=2044583 |
| Finally go on this page: https://sinobu.online/?ref=1399 |
==================================================================================================================================================
*/
(function() {
'use strict';
var claimButtonClicked = false;
setInterval(function() {
// Click on the "Collect your reward" button.
if (document.getElementsByClassName('btn btn-danger btn-lg')[0]) {
document.getElementsByClassName('btn btn-danger btn-lg')[0].click();
} else if ((document.getElementsByClassName('btn btn-danger')[0]) && (window.location.href.indexOf('index') != -1)) {
document.getElementsByClassName('btn btn-danger')[0].click();
}
// If hCaptcha is solved, click on the "Claim" button.
if (document.querySelector('.h-captcha')) {
if ((document.querySelector('.h-captcha > iframe').getAttribute('data-hcaptcha-response').length > 0) && (claimButtonClicked == false)) {
document.getElementsByClassName('btn btn-danger')[0].click(); // Click on the "Collect your reward" button.
claimButtonClicked = true; // Set boolean to true - stop repetitive loop.
}
}
}, 1000); // 1 seconds - increase the timer if your PC is not enough powerful.
})();