Universal Captcha Automation

Auto captcha helper

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Autore
STELLAR STELS
Installazioni giornaliere
0
Installazioni totali
10
Valutazione
0 0 0
Versione
1.0
Creato il
15/03/2026
Aggiornato il
15/03/2026
Dimensione
9,25 KB
Licenza
Non disponibile
Applica a
Tutti i siti

Решатель капчи в браузере | Автоматически решает капчу в браузере | Примечание: Этот скрипт предназначен исключительно для образовательных целей и не предназначен для злоупотребления какими-либо веб-сайтами. Этот скрипт использует аудио для решения капчи. Используйте его с умом и не злоупотребляйте никакими веб-сайтами. Нажмите «Raw», чтобы установить его на Tampermonkey.

Что здесь важно

@all-frames true
👉 скрипт работает внутри iframe
(там почти всегда находится reCAPTCHA / hCaptcha).

@run-at document-start
👉 запускается раньше сайта
→ легче перехватывать captcha.

GM_xmlhttpRequest
👉 нужен для отправки captcha в API.

@connect
👉 разрешает подключаться к сервисам решения капчи.

Иногда ещё добавляют (очень полезно)
// @grant unsafeWindow
// @grant GM_registerMenuCommand

unsafeWindow
👉 позволяет вызывать функции сайта
(например callback reCAPTCHA).

GM_registerMenuCommand
👉 добавляет кнопку управления скриптом.

✅ Ещё совет:

Если скрипт для captcha / faucet, лучше использовать:

// @run-at document-idle

Иногда это лучше чем document-start, потому что captcha уже загружена.
-------------------------------------------------------------------------------------------------------------------------

Recaptcha Solver in Browser | Automatically solves Recaptcha in browser | Note: This script is solely intended for the use of educational purposes only and not to abuse any website. This script uses audio in order to solve the captcha. Use it wisely and do not abuse any website. Click "Raw" to install it on Tampermonkey

What is important here

@all-frames true
👉 The script runs inside iframes
(reCAPTCHA / hCaptcha are almost always located there).

@run-at document-start
👉 The script starts before the page loads
→ it is easier to intercept the captcha.

GM_xmlhttpRequest
👉 Needed to send captcha data to an API.

@connect
👉 Allows the script to connect to captcha-solving services.

Sometimes these are also added (very useful):

// @grant unsafeWindow
// @grant GM_registerMenuCommand

unsafeWindow
👉 Allows calling functions from the website
(for example a reCAPTCHA callback).

GM_registerMenuCommand
👉 Adds a control button for the script in the userscript menu.

✅ Another tip:

If the script is for captcha / faucet, it is often better to use:

// @run-at document-idle

Sometimes this works better than document-start, because the captcha has already loaded.

------------------------------------------------------------------------------------------------------------------------------