Captcha Solver: Auto captcha solving service

Captcha Solver: Auto captcha solving service

Automatically solve reCAPTCHA, hCaptcha, FunCaptcha, AWS WAF, and more types on any webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "version": "1.10.5",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "devtools_page": "www/index.html#/devtools",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "assets/content.css"
      ],
      "js": [
        "my-content-script.js",
        "image-to-text.js"
      ]
    },
    {
      "matches": [
        "*://*.arkoselabs.com/fc/*",
        "*://*.funcaptcha.com/fc/*",
        "*://*.openai.com/fc/*"
      ],
      "js": [
        "funcaptcha-recognition.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "*://*.hcaptcha.com/captcha/*"
      ],
      "js": [
        "hcaptcha-recognition.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "*://*.google.com/recaptcha/*",
        "*://*.recaptcha.net/recaptcha/*",
        "*://recaptcha.net/recaptcha/*"
      ],
      "js": [
        "recaptcha-recognition.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "aws-recognition.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "web_accessible_resources": [
    "*"
  ],
  "name": "Captcha Solver: Auto captcha solving service",
  "short_name": "Captcha Solver: Auto captcha solving service",
  "description": "Automatically solve reCAPTCHA, hCaptcha, FunCaptcha, AWS WAF, and more types on any webpage.",
  "browser_action": {
    "default_icon": "icons/icon-48x48.png",
    "default_popup": "www/index.html#/popup",
    "default_title": "Captcha Solver: Auto captcha solving service"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}