hektCaptcha: hCaptcha Solver

Automatically solve hCaptcha using AI. Locally, with Chrome extension.

hektCaptcha: hCaptcha Solver là gì?

hektCaptcha: hCaptcha Solver là một tiện ích mở rộng Chrome được phát triển bởi https://akmal.dev, và tính năng chính của nó là "Automatically solve hCaptcha using AI. Locally, with Chrome extension.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng hektCaptcha: hCaptcha Solver

Tải xuống các tệp mở rộng hektCaptcha: hCaptcha Solver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Features:
- Automatically solve hCaptcha free of charge
- Solve hCaptcha 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 hCaptcha challenge. We use a lightweight image classification model to solve it. This model is updated whenever a new challenge appears.

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

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

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

TRON Address (TRX/USDT ONLY): TDdZgEp9q1LSLiTDSMSUSVuXcHBH2uFXhV                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên hektCaptcha: hCaptcha Solver hektCaptcha: hCaptcha Solver
ID bpfdbfnkjelhloljelooneehdalcmljb
URL Chính Thức https://chromewebstore.google.com/detail/hektcaptcha-hcaptcha-solv/bpfdbfnkjelhloljelooneehdalcmljb
Mô tả Automatically solve hCaptcha using AI. Locally, with Chrome extension.
Kích Thước Tệp 6.71 MB
Số Lần Cài Đặt 25,461
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2023-10-31
Ngày Phát Hành 2023-02-08
Đánh Giá 3.94/5 Tổng số 79 Đánh Giá
Nhà Phát Triển https://akmal.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Wikidepia/hektCaptcha-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "hektCaptcha: hCaptcha Solver",
    "version": "0.3.2",
    "description": "Automatically solve hCaptcha using AI. Locally, with Chrome extension.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "hektCaptcha",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "models\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/hekt-static.akmal.dev\/*",
        "*:\/\/*.google.com\/recaptcha\/*",
        "*:\/\/*.recaptcha.net\/recaptcha\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hcaptcha.com\/captcha\/*"
            ],
            "js": [
                "hcaptcha.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": false
        },
        {
            "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
        }
    ]
}