rektCaptcha: reCaptcha Solver

Automatically solve reCaptcha using AI.

¿Qué es rektCaptcha: reCaptcha Solver?

rektCaptcha: reCaptcha Solver es una extensión de Chrome desarrollada por ProtoChuz, y su función principal es "Automatically solve reCaptcha using AI.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión rektCaptcha: reCaptcha Solver

Descarga archivos de extensión rektCaptcha: reCaptcha 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

                        Features:
- Automatically solve reCaptcha free of charge
- Solve reCaptcha without any limit
- No need to register or login

How does it work?

Simply install our extension, sit back and let the AI take care of the reCaptcha challenge. We use a lightweight image classification model to solve it.

Check out the source code in GitHub: https://github.com/Wikidepia/rektCaptcha-extension

####################
If you find this project useful, please consider donating:

Ko-fi (Paypal): https://ko-fi.com/wikidepia

TRON Address (TRX/USDT ONLY): TDdZgEp9q1LSLiTDSMSUSVuXcHBH2uFXhV                    

Información Básica de la Extensión

Nombre rektCaptcha: reCaptcha Solver rektCaptcha: reCaptcha Solver
ID bbdhfoclddncoaomddgkaaphcnddbpdh
URL Oficial https://chromewebstore.google.com/detail/rektcaptcha-recaptcha-sol/bbdhfoclddncoaomddgkaaphcnddbpdh
Descripción Automatically solve reCaptcha using AI.
Tamaño del Archivo 12.74 MB
Cantidad de Instalaciones 1,000
Versión Actual 0.1.0
Última Actualización 2023-12-06
Fecha de Publicación 2023-12-06
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador ProtoChuz
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "rektCaptcha: reCaptcha Solver",
    "version": "0.1.0",
    "description": "Automatically solve reCaptcha using AI.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "rektCaptcha",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "models\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.google.com\/recaptcha\/*",
        "*:\/\/*.recaptcha.net\/recaptcha\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/recaptcha\/api2\/*",
                "*:\/\/*.google.com\/recaptcha\/enterprise\/*",
                "*:\/\/*.recaptcha.net\/recaptcha\/api2\/*",
                "*:\/\/*.recaptcha.net\/recaptcha\/enterprise\/*"
            ],
            "js": [
                "recaptcha.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "recaptcha-visibility.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": false
        }
    ]
}