Greasy Fork is available in English.
feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U
当前为
// ==UserScript==
// @name Freebitcoin Auto Claim
// @namespace http://romenum.online
// @version 1.0
// @description feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U
// @author romenum
// @match https://freebitco.in/*
// @grant none
// ==/UserScript==
function ready() {
sleep(3000);
var buttonid = "free_play_form_button";
var buttonexists = document.getElementById(buttonid);
setInterval(function () {
if (buttonexists !== null) {
setInterval(function () {
document.getElementById(buttonid).click();
}, 3600000);
}
}, 120000);
}