NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name doge.auto-claim.co Auto Faucet Clicker
// @namespace https://doge.auto-claim.co/dashboard/auto-faucet
// @version 1.0
// @description Автоматический кликер для doge.auto-claim.co
// @author photolessons.org
// @match https://doge.auto-claim.co/dashboard/auto-faucet
// @grant none
// @license MIT
// ==/UserScript==
(function () {
function clickRollButton() {
const rollButton = document.querySelector('div button.faucet_btnStart__g86D4');
if (rollButton && rollButton.textContent === "START") {
setTimeout(function() {
rollButton.click();
}, 5000); // Пауза в 5 секунд перед нажатием кнопки
}
}
// Нажмите кнопку "Roll" сразу после загрузки страницы, если на ней есть надпись "START"
clickRollButton();
})();