NopeCHA: CAPTCHA Solver

NopeCHA: CAPTCHA Solver

Automatically solve reCAPTCHA, hCaptcha, FunCAPTCHA, AWS WAF, and text CAPTCHA using AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "NopeCHA: CAPTCHA Solver",
  "version": "0.4.8",
  "description": "Automatically solve reCAPTCHA, hCaptcha, FunCAPTCHA, AWS WAF, and text CAPTCHA using AI.",
  "content_scripts": [
    {
      "matches": [
        "*://*.hcaptcha.com/captcha/*"
      ],
      "js": [
        "eventhook.js",
        "captcha/hcaptcha.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.google.com/recaptcha/*",
        "*://*.recaptcha.net/recaptcha/*"
      ],
      "js": [
        "eventhook.js",
        "captcha/recaptcha.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.arkoselabs.com/fc/*",
        "*://*.funcaptcha.com/fc/*",
        "*://*/fc/assets/*"
      ],
      "js": [
        "captcha/funcaptcha.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://challenges.cloudflare.com/cdn-cgi/challenge-platform/h/b/turnstile/if/ov2/av0/*",
        "*://challenges.cloudflare.com/cdn-cgi/challenge-platform/h/g/turnstile/if/ov2/av0/*"
      ],
      "js": [
        "eventhook.js",
        "captcha/turnstile.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://nopecha.com/setup"
      ],
      "js": [
        "pages/setup.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "*://nopecha.com/integrate"
      ],
      "js": [
        "pages/integrate.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://nopecha.com/demo/funcaptcha"
      ],
      "js": [
        "pages/funcaptcha-demo.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "captcha/awscaptcha.js",
        "captcha/textcaptcha.js",
        "captcha/perimeterx.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "scripting",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "NopeCHA: CAPTCHA Solver",
    "default_icon": "icon/16.png",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{2f67aecb-5dac-4f76-9378-0ac4f2bedc9c}",
      "strict_min_version": "100.0"
    }
  }
}