Greasy Fork

Freebitcoin Auto Claim

feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U

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

// ==UserScript==
// @name         Freebitcoin Auto Claim
// @namespace    http://romenum.online
// @version      1.2.4
// @description  feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U
// @author       romenum
// @match        https://freebitco.in/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

$(document).ready(function(){
  setInterval(function(){
  	$('#free_play_form_button').click();
  }, random(3605000,3615000));
  
  setTimeout(function(){
    $('.close-reveal-modal').click();
  }, random(10000,15000));
});

function random(min,max){
   return min + (max - min) * Math.random()
}