Cryptoflare

Free satoshi

  1. // ==UserScript==
  2. // @name Cryptoflare
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Free satoshi
  6. // @author vikiweb
  7. // @match https://cryptoflare.net/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Enter your email address on line 18 and Go to https://cryptoflare.net/?r=9949
  17.  
  18. let email = "email@email.com";
  19. let password = "password";
  20. let check_address = window.location.origin;
  21.  
  22. if(window.location.href.includes(check_address) && document.querySelector("#hero .hero-title")){
  23. window.location.replace(check_address +'/login');
  24. }
  25.  
  26. if (window.location.href.includes(check_address +'/login')) {
  27. setTimeout(function() {
  28. if (document.querySelector("#email")) {
  29. document.querySelector("#email").value = email;
  30. }
  31. if (document.querySelector("#password")) {
  32. document.querySelector("#password").value = password;
  33. }
  34. if (document.querySelector("button[type='submit']")) {
  35. document.querySelector("button[type='submit']").click();
  36. }
  37. }, 10000);
  38. }
  39.  
  40. if (window.location.href.includes(check_address +'/dashboard')) {
  41. window.location.replace(check_address +'/claim');
  42. }
  43.  
  44. if(window.location.href.includes(check_address +'/claim')){
  45. setInterval(function(){
  46. document.querySelectorAll("#gpcaptcha .svg-padding .svg").forEach(function(img) {
  47. if (img.classList.contains('captcha-selected')) {
  48. console.log("Image is selected!");
  49. document.querySelector("#fauform button[type='submit']").click();
  50. } else {
  51. console.log("Image is not selected!");
  52. }
  53. });
  54.  
  55.  
  56. let string = document.querySelector("body > section:nth-child(5) > div > div > div:nth-child(3) > div > div:nth-child(2) > h2");
  57. if(string){
  58. let parts = string.innerText.split("/");
  59. if (parts[0] === "0") {
  60. console.log("The first value is 0.");
  61. alert('Come back tomorrow to claim again')
  62. } else {
  63. console.log("The first value is not 0.");
  64. }
  65. }
  66.  
  67. }, 10000)
  68. }
  69.  
  70.  
  71. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址