Greasy Fork is available in English.

reCAPTCHA Helper

This automatically clicks on any recaptcha on the webpage and submits it directly after you solved it

Fra 07.04.2016. Se den seneste versjonen.

// ==UserScript==
// @name         reCAPTCHA Helper
// @version      0.3
// @description  This automatically clicks on any recaptcha on the webpage and submits it directly after you solved it
// @author       Royalgamer06 & Tackyou
// @include      *://*
// @grant        none
// @namespace    https://greasyfork.org/scripts/18449-recaptcha-form-autosubmit/
// ==/UserScript==

if (location.href.indexOf('google.com/recaptcha') > -1) {
    var clickCheck = setInterval(function() {
        if (document.querySelectorAll('.recaptcha-checkbox-checkmark').length > 0) {
            clearInterval(clickCheck);
            document.querySelector('.recaptcha-checkbox-checkmark').click();
        }
    }, 100);
} else {
    var forms = document.forms;
    for (var i = 0; i < forms.length; i++) {
        if (forms[i].innerHTML.indexOf('google.com/recaptcha') > -1) {
            var rc_form = forms[i];
            var solveCheck = setInterval(function() {
                if (grecaptcha.getResponse().length > 0) {
                    clearInterval(solveCheck);
                    rc_form.submit();
                }
            }, 100);
        }
    }
}