hCaptcha Solver

Solves hCAPTCHA challenges using deep neural networks.

hCaptcha Solver란 무엇입니까?

hCaptcha Solver은(는) https://gpudrops.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Solves hCAPTCHA challenges using deep neural networks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

hCaptcha Solver 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        **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'"
}