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文件

下載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
官方網址 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'"
}