Universal Captcha Automation

Auto captcha helper

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

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.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

المؤلف
STELLAR STELS
التثبيت اليومي
0
إجمالي التثبيت
10
التقييمات
0 0 0
الإصدار
1.0
تم إنشاؤه
15-03-2026
تم تحديثه
15-03-2026
الحجم
9.25 KB
الترخيص
لا يوجد
ينطبق على
جميع المواقع

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

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