Tamper Monkey Shiba Inu Faucet Bot


SUBMITTED BY: PimpDaddy

DATE: Oct. 30, 2021, 2:40 p.m.

FORMAT: Text only

SIZE: 1.3 kB

HITS: 1150

  1. Tamper Monkey Shiba Inu Faucet Bot
  2. install Tamper Mokey from google extensions.
  3. Copt & Paste this scrypt into tamper monkey. click save.
  4. Install recaptcha: https://greasyfork.org/en/scripts/430593-recaptcha-solver-automatically-solves-recaptcha-in-browser
  5. sign up with my link to say thanks for the help: https://shiba-faucoin.com/?ref=49040
  6. // ==UserScript==
  7. // @name Free Faucet Shiba Inu
  8. // @namespace http://tampermonkey.net/
  9. // @version 0.3
  10. // @description Shiba Inu mini script
  11. // @author Jean
  12. // @match https://shiba-faucoin.com
  13. // @match https://shiba-faucoin.com/*
  14. // @icon https://www.google.com/s2/favicons?domain=shiba-faucoin.com
  15. // @grant none
  16. // ==/UserScript==
  17. /*
  18. Use this reCaptcha solver: https://greasyfork.org/fr/scripts/430593-recaptcha-solver-automatically-solves-recaptcha-in-browser
  19. */
  20. (function() {
  21. 'use strict';
  22. // Your code here...
  23. var click = false;
  24. setInterval(function() {
  25. if (window.grecaptcha.getResponse().length > 0) {
  26. document.querySelector("#rf > a").click();
  27. click = true;
  28. }
  29. }, 2000);
  30. setTimeout(function() {
  31. window.location.reload();
  32. }, 300000);
  33. })();

comments powered by Disqus