CaptchaAI - Captcha Solver

CaptchaAI - Captcha Solver

Captcha auto Recognition and Bypass (Free plan included) CaptchaAI allows you to automatically solve CAPTCHAs found on any webpage

Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": {
      "32": "assets/images/icon_32.png",
      "128": "assets/images/icon_128.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "Captcha Solver: Auto Recognition and Bypass"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "content/style.css"
      ],
      "js": [
        "vendor/jquery/3.5.1/jquery.min.js",
        "common/config.js",
        "content/core_helpers.js",
        "content/script.js",
        "content/captcha/hcaptcha/processor.js",
        "content/captcha/recaptcha/processor.js",
        "content/captcha/normal/hunter.js",
        "content/captcha/normal/processor.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://ocr.captchaai.com/",
  "icons": {
    "32": "assets/images/icon_32.png",
    "128": "assets/images/icon_128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA30A/IafvjwmauRDH2RJGGUUjXGwJrlgK/63xH7zzlacKdUSKRLlDFNetKg8D3AfZDRGYWENnhVcrh+3jvCqJjoRnPtOr6IPI5siXXCEfnSrBD1r8qKxLolJMfcdc+cVu8NXmwrlyfdDjTGf3M2Qp/5NxOTFNkRFtzMJ3DCF+xaordkSWXgwm9iw6CsQupOqj86FqKWt6CHrxKHk94h2sqvEDhctcs1HT4u5m9rmQYi9Uw4PslEeFc2E3FrTts2zcAHO2LFcnSthvflyPI2RFVM67doNlKsydHjjxpTnxWCjOjhAgDRgcecN3VcVYqhEY+D81j3XMYFGzyf5caakAUwIDAQAB",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "options_ui": {
    "open_in_tab": true,
    "page": "options/options.html"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "short_name": "__MSG_extShortName__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.1",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/images/*",
        "content/*"
      ]
    }
  ]
}