// ==UserScript== // @name Freebitcoin Auto Claim // @namespace http://romenum.online // @version 1.1 // @description feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U // @author romenum // @match https://freebitco.in/* // @grant none // @downloadURL none // ==/UserScript== window.onload = function() { setInterval(function () { if (document.getElementById("free_play_form_button") !== null) { setInterval(function () { document.getElementById("free_play_form_button").click(); }, 3600000); } }, 120000); }