hCaptcha Solver

Solves hCAPTCHA challenges using deep neural networks.

¿Qué es hCaptcha Solver?

hCaptcha Solver es una extensión de Chrome desarrollada por https://gpudrops.com, y su función principal es "Solves hCAPTCHA challenges using deep neural networks.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión hCaptcha Solver

Descarga archivos de extensión hCaptcha Solver en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        **IMPORTANT**

We have released a newer version! Search the webstore for "NopeCHA"

Download here:
https://chrome.google.com/webstore/detail/dknlfmjaanfblgfdfebhijalfmhmjjjo

This extension is no longer updated. Please download NopeCHA instead.                    

Información Básica de la Extensión

Nombre hCaptcha Solver hCaptcha Solver
ID lfpfbgeoodeejmjdlfjbfjkemjlblijg
URL Oficial https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg
Descripción Solves hCAPTCHA challenges using deep neural networks.
Tamaño del Archivo 31.43 MB
Cantidad de Instalaciones 8,441
Versión Actual 1.3.1
Última Actualización 2022-10-03
Fecha de Publicación 2022-01-09
Calificación 3.03/5 Total de 59 Calificaciones
Desarrollador https://gpudrops.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://www.nopecha.com/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hCaptcha Solver",
    "description": "Solves hCAPTCHA challenges using deep neural networks.",
    "version": "1.3.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "worker.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "model_cs\/*",
        "model_mn\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "content\/jimp.js",
                "content\/tf.js",
                "content\/model_cs.js",
                "content\/model_mn.js",
                "content\/hcaptcha.js"
            ],
            "matches": [
                "https:\/\/*.hcaptcha.com\/captcha\/*"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "\/images\/icon_16.png",
            "32": "\/images\/icon_32.png",
            "48": "\/images\/icon_48.png",
            "128": "\/images\/icon_128.png"
        },
        "default_title": "Captcha solver"
    },
    "icons": {
        "16": "\/images\/icon_16.png",
        "32": "\/images\/icon_32.png",
        "48": "\/images\/icon_48.png",
        "128": "\/images\/icon_128.png"
    },
    "permissions": [
        "cookies",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}