Hatecoin

auto login e coleta faucet

  1. // ==UserScript==
  2. // @name Hatecoin
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description auto login e coleta faucet
  6. // @author White
  7. // @match https://hatecoin.me/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=hatecoin.me
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. if (window.location.href.includes("/dashboard")) {
  14. window.location.href = "https://hatecoin.me/faucet";
  15. }
  16. if (window.location.href == "https://hatecoin.me/" || window.location.href == "https://hatecoin.me") {
  17. window.location.href = "https://hatecoin.me/login";
  18. }
  19. if (window.location.href.includes("/login")) {
  20. const email = 'email';
  21. const senha = 'senha';
  22.  
  23. const fillLoginForm = () => {
  24. const emailField = document.getElementById('email');
  25. const passwordField = document.getElementById('password');
  26.  
  27. if (emailField && passwordField) {
  28. emailField.value = email;
  29. passwordField.value = senha;
  30.  
  31. setTimeout(() => {
  32. const logInButton = document.querySelector('button.btn.btn-primary.btn-block.waves-effect.waves-light[type="submit"]');
  33. logInButton.click();
  34. }, 3000);
  35. }
  36. };
  37.  
  38. const checkAndClick = () => {
  39. const grecaptchaResponse = (window.grecaptcha && window.grecaptcha.getResponse) ? window.grecaptcha.getResponse() : null;
  40.  
  41. if (grecaptchaResponse && grecaptchaResponse.length > 0) {
  42. fillLoginForm();
  43. }
  44. };
  45.  
  46. const intervalId = setInterval(checkAndClick, 3000);
  47. }
  48.  
  49. function mbsolver() {
  50. const valorAntibotlinks = document.getElementById('antibotlinks').value.replace(/\s/g, '');
  51. return valorAntibotlinks.length === 12;
  52. }
  53.  
  54. setInterval(function() {
  55. const valorAntibotlinks = document.getElementById('antibotlinks').value.replace(/\s/g, '');
  56. const grecaptchaResponse = (window.grecaptcha && window.grecaptcha.getResponse) ? window.grecaptcha.getResponse() : null;
  57.  
  58. if (window.location.href.includes("/faucet") && grecaptchaResponse && grecaptchaResponse.length > 0 && mbsolver()) {
  59. const submitButton = document.querySelector('button.btn.btn-primary.btn-lg.claim-button');
  60. if (submitButton) {
  61. submitButton.click();
  62. }
  63. }
  64. }, 3000);
  65. })();

QingJ © 2025

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