[Captcha Skip]

This solve google recaptcha automatic after sec.

  1. // ==UserScript==
  2. // @name [Captcha Skip]
  3. // @version 1.0.0
  4. // @description This solve google recaptcha automatic after sec.
  5. // @author Janik313
  6. // @match ebonus.gg google.com
  7. // @include *
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/200015
  10. // ==/UserScript==
  11.  
  12. var domain = (window.location != window.parent.location) ? document.referrer.toString() : document.location.toString();
  13. if (domain.indexOf('miped.ru') == -1 && domain.indexOf('indiegala') == -1 && domain.indexOf('gleam.io') == -1) { //You can exclude domains here (advanced)
  14. if (location.href.indexOf('google.com/recaptcha') > -1) {
  15. var clickCheck = setInterval(function() {
  16. if (document.querySelectorAll('.recaptcha-checkbox-checkmark').length > 0) {
  17. clearInterval(clickCheck);
  18. document.querySelector('.recaptcha-checkbox-checkmark').click();
  19. }
  20. }, 5000);
  21. } else {
  22. var forms = document.forms;
  23. for (var i = 0; i < forms.length; i++) {
  24. if (forms[i].innerHTML.indexOf('google.com/recaptcha') > -1) {
  25. var rc_form = forms[i];
  26. var solveCheck = setInterval(function() {
  27. if (grecaptcha.getResponse().length > 0) {
  28. clearInterval(solveCheck);
  29. rc_form.submit();
  30. }
  31. }, 100);
  32. }
  33. }
  34. }
  35. }