
¿Puedes hacer que los reCAPTCHA de Google tengan por defecto la versión de sonido? Estoy usando Chrome y Firefox y estoy cansado de tener que seleccionar el sonido manualmente cada vez.
Respuesta1
Sí, es posible con un script de usuario. Ejemplo:
// ==UserScript==
// @name Autoplay Google reCAPTCHA v2
// @description Attempts to autoplay audio version of Google reCAPTCHA v2.
// @namespace https://github.com/Destroy666x
// @author Destroy666
// @version 1.0
// @supportURL https://github.com/Destroy666x/greasemonkey-script-collection
// @homepage https://patreon.com/Designeous
// @match *://*/*
// @grant none
// ==/UserScript==
(async function() {
'use strict';
const { default: monitoring } = await import('https://cdn.jsdelivr.net/npm/monitoring/dist/monitoring-latest.min.mjs');
// Monitor with iframe support
const monitor = monitoring(document.body, { iframes: true });
const imagePopupSelector = '#rc-imageselect';
const audioButtonSelector = '#recaptcha-audio-button';
const playButtonSelector = '.rc-button-default';
// We need to monitor the popup as it's buggy for the button (or some children in general)
monitor.appeared(
imagePopupSelector,
el => {
el.querySelector(audioButtonSelector).click();
}
);
// Also monitor the popup with the play button to press it, here it works directly
monitor.appeared(
playButtonSelector,
el => {
el.click();
}
);
})();
Pegue esto como, por ejemplo, nuevomono manipuladorscript y luego asegúrese de que esté habilitado.
Tenga en cuenta que el uso de un script como ese podría influir en la puntuación del bot de reCaptcha y es posible que reciba más desafíos por parecer demasiado automático.