NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/miroslavets90 // @name Captcha Bypasser // @description Autofill Captcha google I'am not robbot // @copyright 2018, miroslavets90 (https://openuserjs.org/users/miroslavets90) // @license GPL-3.0+; http://www.gnu.org/licenses/gpl-3.0.txt // @version 1 // @include https://www.google.com/recaptcha/intro/android.html // @grant none // ==/UserScript== window.addEventListener('load', function() { document.getElementById("txtInput").value=document.getElementById("txtCaptcha").value; }, false); var e = document.getElementById("btnrefresh"); e.addEventListener("click", modifyText, false); function modifyText() { document.getElementById("txtInput").value=document.getElementById("txtCaptcha").value; }