// ==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 // @downloadURL 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); } }