hCaptcha Solver

Solves hCAPTCHA challenges using deep neural networks.

hCaptcha Solver là gì?

hCaptcha Solver là một tiện ích mở rộng Chrome được phát triển bởi https://gpudrops.com, và tính năng chính của nó là "Solves hCAPTCHA challenges using deep neural networks.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng 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

                        **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.                    

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

Tên hCaptcha Solver hCaptcha Solver
ID lfpfbgeoodeejmjdlfjbfjkemjlblijg
URL Chính Thức https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg
Mô tả Solves hCAPTCHA challenges using deep neural networks.
Kích Thước Tệp 31.43 MB
Số Lần Cài Đặt 8,441
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2022-10-03
Ngày Phát Hành 2022-01-09
Đánh Giá 3.03/5 Tổng số 59 Đánh Giá
Nhà Phát Triển https://gpudrops.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.nopecha.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
}