Captcha Recognizer

Captcha Recognizer

Automatically recognize and fill in the webpage captcha code.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Captcha Recognizer",
  "version": "2.4",
  "default_locale": "zh_TW",
  "description": "__MSG_app_description__",
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "48": "favicon-48x48.png",
    "64": "favicon-64x64.png",
    "128": "favicon-128x128.png"
  },
  "action": {
    "default_title": "Captcha Recognizer",
    "default_icon": {
      "16": "favicon-16x16.png",
      "32": "favicon-32x32.png",
      "48": "favicon-48x48.png",
      "64": "favicon-64x64.png",
      "128": "favicon-128x128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.cht.com.tw/*",
        "*://*.cyc.org.tw/*",
        "*://*.ncku.edu.tw/*",
        "*://*.railway.gov.tw/*",
        "*://*.thsrc.com.tw/*",
        "*://*.xuanen.com.tw/*"
      ],
      "run_at": "document_idle",
      "js": [
        "jquery.min.js",
        "content.aspx_5c.js",
        "content.cht.js",
        "content.ncku.js",
        "content.railway.js",
        "content.thsrc.js",
        "main.js"
      ]
    }
  ],
  "host_permissions": [
    "*://ocr.holey.cc/*"
  ],
  "short_name": "Captcha OCR"
}