CAPTCHA Solver

Automatically solve CAPTCHAs using AI.

Wat is CAPTCHA Solver?

CAPTCHA Solver is een Chrome-extensie ontwikkeld door Captcha Solver, en de belangrijkste functie is "Automatically solve CAPTCHAs using AI.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CAPTCHA Solver

Download CAPTCHA Solver-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Automatically solve captcha using captcha solver                    

Basisinformatie over de Extensie

Naam CAPTCHA Solver CAPTCHA Solver
ID pikekobjmeagbnemncchbmanbpkbnpjf
Officiële URL https://chrome.google.com/webstore/detail/captcha-solver/pikekobjmeagbnemncchbmanbpkbnpjf
Beschrijving Automatically solve CAPTCHAs using AI.
Bestandsgrootte 31.22 KB
Aantal Installaties 221
Huidige Versie 0.0.1
Laatst Bijgewerkt 2022-10-19
Publicatiedatum 2022-10-19
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Captcha Solver
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}