kiddyearner

Auto shorts!!!

  1. // ==UserScript==
  2. // @name kiddyearner
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Auto shorts!!!
  6. // @author keno venas
  7. // @match https://kiddyearner.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=kiddyearner.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. function clicarBotaoComDelay() {
  16. setTimeout(function() {
  17. var botao = document.querySelector('button.btn');
  18. if (botao) {
  19. botao.click();
  20. } else {
  21. console.log('Botão não encontrado.');
  22. }
  23. }, 12000);
  24. }
  25.  
  26. // Função para clicar no botão '.col-lg-6:nth-child(1) .claim-btn' após um atraso de 5 segundos
  27. function clicarClaimBtnComDelay() {
  28. setTimeout(function() {
  29. var claimBtn = document.querySelector('.col-lg-6:nth-child(1) .claim-btn');
  30. if (claimBtn) {
  31. claimBtn.click();
  32. } else {
  33. console.log('Botão de claim não encontrado.');
  34. }
  35. }, 5000);
  36. }
  37. function clicarNosBotoes() {
  38. var botoesParaClicar = ['button.btn-submit'];
  39. for (var i = 0; i < botoesParaClicar.length; i++) {
  40. var botao = document.querySelector(botoesParaClicar[i]);
  41. if (botao) {
  42. botao.click();
  43. }
  44. }
  45. }
  46. function isCaptchaChecked() {
  47. return grecaptcha && grecaptcha.getResponse();
  48. }
  49. var verificarCaptchaInterval = setInterval(function() {
  50. if (isCaptchaChecked()) {
  51. clearInterval(verificarCaptchaInterval);
  52. clicarNosBotoes();
  53. }
  54. }, 1000);
  55. clicarBotaoComDelay();
  56. clicarClaimBtnComDelay();
  57. if (window.location.href === "https://kiddyearner.com/") {
  58. window.location.href = "https://cuty.io/RvXT25O1";
  59. }
  60.  
  61. if (window.location.href === "https://kiddyearner.com/dashboard") {
  62. window.location.href = "https://cuty.io/FSJh";
  63. }
  64. function preencherCampos() {
  65. var emailCampo = 'input#email';
  66. var senhaCampo = 'input#password';
  67. var email = 'seuemail@gmail.com';
  68. var senha = 'suasenha ';
  69. setTimeout(function() {
  70. $(emailCampo).val(email);
  71. }, 3000);
  72.  
  73. setTimeout(function() {
  74. $(senhaCampo).val(senha);
  75. }, 3000);
  76. }
  77. function removerCartoes() {
  78. var cartoes = document.querySelectorAll('div[class="col-lg-6"]');
  79. cartoes.forEach(function(cartao) {
  80. var textoCartao = cartao.innerText;
  81. if (
  82. textoCartao.includes("Rs short") ||
  83. textoCartao.includes("Shortsme") ||
  84. textoCartao.includes("FC LC") ||
  85. textoCartao.includes("clk") ||
  86. textoCartao.includes("Shrinkearn") ||
  87. textoCartao.includes("Coinfays") ||
  88. textoCartao.includes("CTR") ||
  89. textoCartao.includes("Clks"))
  90. {
  91. cartao.remove();
  92. }
  93. });
  94. }
  95. preencherCampos();
  96. removerCartoes();
  97.  
  98. })();