Examine source code of 台科選課系統小助手

Inspect and view changes in 台科選課系統小助手 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "台科選課系統小助手",
  "version": "2.0.0",
  "manifest_version": 2,
  "description": "一個協助台科人選課的小工具。",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.crosslink.tw/simulator/*"
      ],
      "css": [
        "css/style.css",
        "css/toastr.css"
      ],
      "js": [
        "js/crosslink.js",
        "js/jquery.js",
        "js/toastr.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "*://querycourse.ntust.edu.tw/"
  ]
}