AutoCAPTCHA

AutoCAPTCHA

Automatic recognize and input for simple CAPTCHA. (Google Cloud Vision API supported)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "Background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/tesseract.min.js",
        "lib/worker.min.js",
        "lib/jquery.min.js",
        "MessageCmd.js",
        "AutoCAPTCHA.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "img/logo16.png",
    "24": "img/logo24.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://vision.googleapis.com/v1/*",
    "https://cdn.jsdelivr.net/gh/naptha/*",
    "https://tessdata.projectnaptha.com/*",
    "https://www.googletagmanager.com/*",
    "https://www.google-analytics.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-eval';"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "__MSG_AutoCAPTCHA_name__",
  "description": "__MSG_AutoCAPTCHA_description__",
  "short_name": "__MSG_AutoCAPTCHA_short_name__",
  "author": "Takuya Ono",
  "default_locale": "ja",
  "version": "0.8.2022.4240"
}