Universal Captcha Automation

Auto captcha helper

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Autor
STELLAR STELS
Installationen heute
0
Installationen gesamt
10
Bewertungen
0 0 0
Version
1.0
Erstellt am
15.03.2026
Letzte Aktualisierung
15.03.2026
Größe
9,25 KB
Lizenz
n/a
Wird angewandt auf
Alle Seiten

Решатель капчи в браузере | Автоматически решает капчу в браузере | Примечание: Этот скрипт предназначен исключительно для образовательных целей и не предназначен для злоупотребления какими-либо веб-сайтами. Этот скрипт использует аудио для решения капчи. Используйте его с умом и не злоупотребляйте никакими веб-сайтами. Нажмите «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.

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