CAPTCHA Solver

Automatically solve CAPTCHAs using AI.

What is CAPTCHA Solver?

CAPTCHA Solver is a Chrome extension developed by Captcha Solver, and its main feature is "Automatically solve CAPTCHAs using AI.".

Extension Screenshots

screenshot

Download CAPTCHA Solver Extension CRX File

Download CAPTCHA Solver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Automatically solve captcha using captcha solver                    

Extension Basic Information

Name CAPTCHA Solver CAPTCHA Solver
ID pikekobjmeagbnemncchbmanbpkbnpjf
Official URL https://chrome.google.com/webstore/detail/captcha-solver/pikekobjmeagbnemncchbmanbpkbnpjf
Description Automatically solve CAPTCHAs using AI.
File Size 31.22 KB
Installation Count 221
Current Version 0.0.1
Last Updated 2022-10-19
Publish Date 2022-10-19
Rating 3.00/5 Total 4 Ratings
Developer Captcha Solver
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.1",
    "description": "Automatically solve CAPTCHAs using AI.",
    "permissions": [
        "storage",
        "scripting",
        "declarativeNetRequest",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "icon\/16.png",
        "128": "icon\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "name": "CAPTCHA Solver",
    "action": {
        "default_title": "CAPTCHA Solver",
        "default_icon": "icon\/16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hcaptcha.com\/captcha\/*"
            ],
            "js": [
                "hcaptcha.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.hcaptcha.com\/captcha\/*"
            ],
            "js": [
                "hcaptcha_fast.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "recaptcha.js",
                "recaptcha_voice.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.google.com\/recaptcha\/*",
                "*:\/\/*.recaptcha.net\/recaptcha\/*",
                "*:\/\/recaptcha.net\/recaptcha\/*"
            ],
            "js": [
                "recaptcha_fast.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "utils.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}