NTHU portal captcha solver

NTHU portal captcha solver

Solve captcha in NTHU portal using TensorFlow.js.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NTHU portal captcha solver",
  "version": "0.0.3",
  "description": "Solve captcha in NTHU portal using TensorFlow.js.",
  "permissions": [
    "webNavigation"
  ],
  "background": {
    "service_worker": "src/service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.ccxp.nthu.edu.tw/ccxp/INQUIRE/",
        "https://www.ccxp.nthu.edu.tw/ccxp/INQUIRE/index.php"
      ],
      "js": [
        "src/content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3,
  "icons": {
    "16": "images/panda_16.png",
    "32": "images/panda_32.png",
    "48": "images/panda_48.png",
    "128": "images/panda_128.png"
  }
}