500BTC sats every 25 mins


SUBMITTED BY: PimpDaddy

DATE: Nov. 3, 2022, 5:19 p.m.

FORMAT: Text only

SIZE: 2.2 kB

HITS: 561

  1. Install from google extension:Noptcha & Tampermonkey
  2. // ==UserScript==
  3. // @name 🎁Free Unlimited BITCOIN Faucet🎁
  4. // @namespace Claim Free BTC [Every 5 Min]
  5. // @version 1.0
  6. // @description Claim Free BTC [Every 5 Min]
  7. // @author lotocamion
  8. // @match https://iqfaucet.com/btc/verify.php
  9. // @match https://iqfaucet.com/btc/index.php?c=1
  10. // @match https://iqfaucet.com/btc/index.php
  11. // @icon https://www.google.com/s2/favicons?sz=64&domain=iqfaucet.com
  12. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
  13. // @run-at document-end
  14. // @match *://*/recaptcha/*
  15. // @connect engageub.pythonanywhere.com
  16. // @connect engageub1.pythonanywhere.com
  17. // ==/UserScript==
  18. (function() {
  19. 'use strict';
  20. var clicked = false;
  21. var address = false;
  22. if($('.form-control')) {
  23. $('.form-control').val("3EvPaHG1gkV8LmrqjnAHQX3j1q8Wt8oZpo");////EDIT YOUR ADDRESS HERE/////
  24. address = true;
  25. }
  26. if($('.btn.btn-primary') && (address == true)) {
  27. $('.btn.btn-primary').click();
  28. }
  29. setTimeout(function() {
  30. if($('.btn.btn-success.btn-lg')) {
  31. $('.btn.btn-success.btn-lg').click();
  32. }}, 3000);
  33. setInterval(function(){
  34. if(!clicked && unsafeWindow.grecaptcha && unsafeWindow.grecaptcha.getResponse().length > 0){
  35. document.getElementsByClassName("btn btn-success")[0].click();
  36. }}, 3000);
  37. setTimeout(function() {
  38. if(document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > div:nth-child(7)")) {
  39. document.querySelector("body > nav > div > div.navbar-header > a").click();
  40. }}, 3000);
  41. setTimeout(function() {
  42. if(document.querySelector("body > div:nth-child(3) > div.col-md-6 > div > div.alert.alert-danger")){
  43. window.location.replace(window.location.pathname + window.location.search + window.location.hash);
  44. }}, 3000);
  45. setInterval(function() {
  46. if(document.querySelector("#reset-button")){
  47. document.querySelector("#reset-button").click();
  48. }}, 3000);
  49. setTimeout(function() {
  50. window.location.replace(window.location.pathname + window.location.search + window.location.hash);
  51. }, 150000);
  52. })();

comments powered by Disqus