Skip to content

Instantly share code, notes, and snippets.

@puppe1990
Created September 12, 2018 03:32
Show Gist options
  • Save puppe1990/3580e243744a0e806325561297a96ffd to your computer and use it in GitHub Desktop.
Save puppe1990/3580e243744a0e806325561297a96ffd to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name freebitco.in autoclaim
// @namespace https://goo.gl/9yC4Lu
// @version 0.1.1
// @description autoclaim freebitco.in https://goo.gl/9yC4Lu
// @author Dekpiano
// @match https://freebitco.in/?op=home
// @match https://freebitco.in/
// @grant none
// ==/UserScript==
$(document).ready(function(){
setInterval(function(){
//$('#free_play_form_button').trigger('click');
if ($('#free_play_form_button').is(':visible')) {
$('#free_play_form_button').trigger('click');
}
},10000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment