hCaptcha Solver

hCaptcha Solver

Solves hCAPTCHA challenges using deep neural networks.

Merlin
Additional files are visible only to premium users

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",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}