hCaptcha Solver

Solves hCAPTCHA challenges using deep neural networks.

hCaptcha Solverคืออะไร?

hCaptcha Solver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gpudrops.com และคุณลักษณะหลักของมันคือ "Solves hCAPTCHA challenges using deep neural networks."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย hCaptcha Solver

ดาวน์โหลดไฟล์ส่วนขยาย hCaptcha Solver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ hCaptcha Solver hCaptcha Solver
ID lfpfbgeoodeejmjdlfjbfjkemjlblijg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg
คำอธิบาย Solves hCAPTCHA challenges using deep neural networks.
ขนาดไฟล์ 31.43 MB
จำนวนการติดตั้ง 8,441
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2022-10-03
วันที่เผยแพร่ 2022-01-09
คะแนน 3.03/5 รวมทั้งหมด 59 คะแนน
ผู้พัฒนา https://gpudrops.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.nopecha.com/privacy
ภาษาที่รองรับ 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'"
}