Captcha Solutions Chrome Browser Extension

Captcha Solutions Chrome Browser Extension

Automatic Captcha Solver & Auto reCAPTCHA v2 Solution.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "scripts": [
      "common/config.js",
      "common/api.js",
      "background/background.js",
      "content/captcha/normal/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "assets/images/icon_32.png",
      "128": "assets/images/icon_128.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "Captcha Solutions"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "content/style.css"
      ],
      "js": [
        "vendor/jquery/3.5.1/jquery.min.js",
        "common/config.js",
        "content/script.js",
        "content/captcha/geetest/interceptor.js",
        "content/captcha/geetest/processor.js",
        "content/captcha/hcaptcha/interceptor.js",
        "content/captcha/hcaptcha/hunter.js",
        "content/captcha/hcaptcha/processor.js",
        "content/captcha/keycaptcha/hunter.js",
        "content/captcha/keycaptcha/processor.js",
        "content/captcha/recaptcha/interceptor.js",
        "content/captcha/recaptcha/hunter.js",
        "content/captcha/recaptcha/processor.js",
        "content/captcha/arkoselabs/interceptor.js",
        "content/captcha/arkoselabs/hunter.js",
        "content/captcha/arkoselabs/processor.js",
        "content/captcha/normal/hunter.js",
        "content/captcha/normal/processor.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "description": "Automatic Captcha Solver & Auto reCAPTCHA v2 Solution.",
  "homepage_url": "https://captchacoins.com/",
  "icons": {
    "32": "assets/images/icon_32.png",
    "128": "assets/images/icon_128.png"
  },
  "manifest_version": 2,
  "name": "Captcha Solutions Chrome Browser Extension",
  "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": "2.0.1",
  "web_accessible_resources": [
    "assets/images/*"
  ]
}