Greasy Fork

Freebitcoin Auto Claim

feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U

目前为 2017-11-21 提交的版本。查看 最新版本

// ==UserScript==
// @name         Freebitcoin Auto Claim
// @namespace    http://romenum.online
// @version      0.2
// @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);
    if (buttonexists !== null) {
        setInterval(function () {document.getElementById("free_play_form_button").click();}, 3600000);
    }
}