hCAPTCHA Solver: auto captcha bypass

An extension to automatically solve any type hCaptcha

Τι είναι το hCAPTCHA Solver: auto captcha bypass;

Το hCAPTCHA Solver: auto captcha bypass είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον uncaptcher, και η κύρια λειτουργία του είναι "An extension to automatically solve any type hCaptcha".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης hCAPTCHA Solver: auto captcha bypass

Λήψη αρχείων επέκτασης hCAPTCHA Solver: auto captcha bypass σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        An extension to automatically solve any type hCaptcha.

Supported:
- hCaptcha

How does it work.
To get your API key you need to create an account on the solving service.
Without API key extensions do not work.

By completing hCaptcha on all websites, a browser addon assists users in solving difficult captchas.

It is not guaranteed that the verification will always be solved. The technological limitations must be considered.

Captcha difficulty can be so off-kilter that they appear friendlier to bots than to humans at times.

The project's goal is to improve our experience with captchas by providing easy access to solutions already used by automated systems.

hCaptcha challenges continue to be a significant burden on the web, delaying and frequently blocking access to services and information based on physical and cognitive abilities, social and cultural background, and the devices or networks from which they are connected.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα hCAPTCHA Solver: auto captcha bypass hCAPTCHA Solver: auto captcha bypass
ID imgmoeegfjhhmljmphfkjeibkiffcdgl
Επίσημο URL https://chromewebstore.google.com/detail/hcaptcha-solver-auto-capt/imgmoeegfjhhmljmphfkjeibkiffcdgl
Περιγραφή An extension to automatically solve any type hCaptcha
Μέγεθος Αρχείου 106 KB
Αριθμός Εγκαταστάσεων 11,446
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-08-05
Ημερομηνία Δημοσίευσης 2022-11-10
Αξιολόγηση 4.67/5 Συνολικά 296 Αξιολογήσεις
Προγραμματιστής uncaptcher
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "default_locale": "en",
    "version": "1.0.2",
    "description": "__MSG_extDescription__",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_title": "hCaptcha Solver: auto captcha bypass",
        "default_icon": {
            "32": "assets\/images\/icon_32.png",
            "128": "assets\/images\/icon_128.png"
        }
    },
    "icons": {
        "32": "assets\/images\/icon_32.png",
        "128": "assets\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "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\/hcaptcha\/processor.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/*",
                "content\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}