Examine source code of SYSU CAS Captcha Recognition

Inspect and view changes in SYSU CAS Captcha Recognition source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "SYSU CAS Captcha Recognition",
  "version": "1.1.0",
  "description": "This is a CNN-based extension for SYSU CAS Captcha recognition",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon32.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.sysu.edu.cn/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "model/captcha.onnx",
        "js/ort-wasm-simd-threaded.mjs",
        "/js/ort-wasm-simd-threaded.wasm"
      ],
      "matches": [
        "*://*.sysu.edu.cn/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://cas.sysu.edu.cn/cas/login*",
        "https://cas-443.webvpn.sysu.edu.cn/cas/login*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/ort.min.js",
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon64.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-eval'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}