reCAPTCHA Auto Solver

reCAPTCHA Automated Solving Extension

reCAPTCHA Auto Solver là gì?

reCAPTCHA Auto Solver là một tiện ích mở rộng Chrome được phát triển bởi CAPTCHAs.IO, và tính năng chính của nó là "reCAPTCHA Automated Solving Extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng reCAPTCHA Auto Solver

Tải xuống các tệp mở rộng reCAPTCHA Auto Solver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên reCAPTCHA Auto Solver reCAPTCHA Auto Solver
ID ofceicgpilfcjbkkbbjfpemjnibcojam
URL Chính Thức https://chromewebstore.google.com/detail/recaptcha-auto-solver/ofceicgpilfcjbkkbbjfpemjnibcojam
Mô tả reCAPTCHA Automated Solving Extension
Kích Thước Tệp 581 KB
Số Lần Cài Đặt 402
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-02-21
Ngày Phát Hành 2023-02-12
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển CAPTCHAs.IO
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://captchas.io
URL Trang Trợ Giúp https://captchas.io/support/
URL Trang Chính Sách Bảo Mật https://captchas.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}