reCAPTCHA Auto Solver

reCAPTCHA Automated Solving Extension

ما هو reCAPTCHA Auto Solver؟

reCAPTCHA Auto Solver هو إضافة Chrome تم تطويرها بواسطة CAPTCHAs.IO، والميزة الرئيسية لها هي "reCAPTCHA Automated Solving Extension".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة reCAPTCHA Auto Solver

قم بتنزيل ملفات الامتداد reCAPTCHA Auto Solver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension solves any type reCAPTCHA anywhere in the page.

An extension to automatically solve any type reCAPTCHAs.

Supports reCAPTCHA v2, v3 and Enterprise...

How does it work.

Well it works quite simple... It will detect and solve automatically to any found reCAPTCHAs in your current working tab.

Thanks!

To get an API key you can go to https://captchas.io                    

معلومات أساسية عن التمديد

الاسم reCAPTCHA Auto Solver reCAPTCHA Auto Solver
ID ofceicgpilfcjbkkbbjfpemjnibcojam
عنوان URL الرسمي https://chromewebstore.google.com/detail/recaptcha-auto-solver/ofceicgpilfcjbkkbbjfpemjnibcojam
الوصف reCAPTCHA Automated Solving Extension
حجم الملف 581 KB
عدد التثبيتات 402
النسخة الحالية 1.0.4
آخر تحديث 2023-02-21
تاريخ النشر 2023-02-12
تقييم 3.00/5 مجموع تقييمات 2
المطور CAPTCHAs.IO
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://captchas.io
عنوان صفحة المساعدة https://captchas.io/support/
عنوان صفحة سياسة الخصوصية https://captchas.io/privacy
اللغات المدعومة en,ru
manifest.json
{
    "action": {
        "default_icon": {
            "128": "assets\/images\/icon_128.png",
            "32": "assets\/images\/icon_32.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "reCAPTCHA Auto Solver"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "content\/style.css"
            ],
            "js": [
                "vendor\/jquery\/3.5.1\/jquery.min.js",
                "common\/config.js",
                "content\/core_helpers.js",
                "content\/script.js",
                "content\/captcha\/recaptcha\/processor.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "default_locale": "en",
    "description": "reCAPTCHA Automated Solving Extension",
    "icons": {
        "128": "assets\/images\/icon_128.png",
        "32": "assets\/images\/icon_32.png"
    },
    "manifest_version": 3,
    "name": "reCAPTCHA Auto Solver",
    "permissions": [
        "storage"
    ],
    "short_name": "reCAPTCHA Auto Solver",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.4",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/images\/*",
                "content\/*"
            ]
        }
    ]
}