NoCaptcha Solver

NoCaptcha Solver

Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NoCaptcha Solver",
  "version": "0.1.9",
  "description": "Solve your captcha problem, like reCAPTCHA/hCAPTCHA and more",
  "author": "NoCaptcha",
  "homepage_url": "https://nocaptcha.io",
  "icons": {
    "48": "icon.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "background",
    "storage"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://google.com/recaptcha/api2/*",
        "https://google.com/recaptcha/enterprise/*",
        "https://recaptcha.net/recaptcha/api2/*",
        "https://recaptcha.net/recaptcha/enterprise/*",
        "https://www.google.com/recaptcha/api2/*",
        "https://www.google.com/recaptcha/enterprise/*",
        "https://www.recaptcha.net/recaptcha/api2/*",
        "https://www.recaptcha.net/recaptcha/enterprise/*",
        "https://recaptcha.google.cn/recaptcha/api2/*",
        "https://recaptcha.google.cn/recaptcha/enterprise/*",
        "https://*/captcha/v1/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-msg.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/inject-recaptcha.js",
        "/inject-hcaptcha.js",
        "/inject-msg.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}