Universal Captcha Automation

Auto captcha helper

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

Maker
STELLAR STELS
Dagelijks aantal installaties
0
Totaal aantal installaties
10
Beoordelingen
0 0 0
Versie
1.0
Gemaakt op
15-03-2026
Bijgewerkt op
15-03-2026
Grootte
9,25 KB
Licentie
N.v.t.
Wordt toegepast op
Alle websites

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

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