legendofcibola

Freebitco.in Autoclaim Play Without Captcha + Force Refresh

Oct 7th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Freebitco.in Autoclaim Play Without Captcha + Force Refresh Page
  3. // @namespace By youtube.com/c/BITCOINCHANNEL
  4. // @version 0.1.1
  5. // @description Autoclaim Play Without Captcha Freebitco.in + Force Refresh Page
  6. // @author BITCOINCHANNEL
  7. // @match https://freebitco.in/?op=home
  8. // @match https://freebitco.in/?op=home#
  9. // @match https://freebitco.in/
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. var timeout = setTimeout("location.reload(true);",3630000);
  14. function resetTimeout() {
  15. clearTimeout(timeout);
  16. timeout = setTimeout("location.reload(true);",3630000);
  17. }
  18. $(document).ready(function(){
  19. setInterval(function(){
  20. //$('#play_without_captchas_button').trigger('click');
  21. if ($('#play_without_captchas_button').is(':visible')) {
  22. $('#play_without_captchas_button').trigger('click');
  23.  
  24. $(document).ready(function(){
  25. setInterval(function(){
  26. //$('#free_play_form_button').trigger('click');
  27. if ($('#free_play_form_button').is(':visible')) {
  28. $('#free_play_form_button').trigger('click');
  29. }
  30. },10000);
  31. });
  32. }
  33. },10000);
  34. });
Add Comment
Please, Sign In to add comment