True Captcha

True Captcha

Solve image captchas automatically in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "True Captcha",
  "description": "Solve image captchas automatically in the browser.",
  "version": "0.3.8",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://api.apitruecaptcha.org/*",
    "https://api.truecaptcha.org/*",
    "http://localhost:3000/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/const.js",
        "lib/utils.js",
        "lib/storage.js",
        "lib/options.js",
        "lib/credentials.js",
        "lib/hello.js",
        "lib/getUniqueSelector.js",
        "lib/selector.js",
        "lib/clicker.js",
        "lib/image.js",
        "lib/solver.js",
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/TrueCaptchaLogo16.png",
      "32": "/images/TrueCaptchaLogo32.png",
      "48": "/images/TrueCaptchaLogo48.png",
      "128": "/images/TrueCaptchaLogo128.png"
    }
  },
  "options_page": "options.html",
  "icons": {
    "16": "/images/TrueCaptchaLogo16.png",
    "32": "/images/TrueCaptchaLogo32.png",
    "48": "/images/TrueCaptchaLogo48.png",
    "128": "/images/TrueCaptchaLogo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3
}