NYCU e3 驗證碼辨識器

NYCU e3 驗證碼辨識器

Automatically recognize verification code in NYCU e3 system

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "128": "images/logo2.png"
  },
  "description": "Automatically recognize verification code in NYCU e3 system",
  "browser_action": {
    "default_icon": "images/logo2.png",
    "default_popup": "popup.html",
    "default_title": "NYCU e3 captcha Recognizer"
  },
  "content_scripts": [
    {
      "matches": [
        "https://e3.nycu.edu.tw/login/index.php"
      ],
      "js": [
        "onnx.min.js",
        "background.js"
      ],
      "run_at": "document_end",
      "all_frame": true
    }
  ],
  "name": "NYCU e3 驗證碼辨識器",
  "version": "1.4",
  "homepage_url": "https://e3.nycu.edu.tw/login/index.php"
}