NTU Sweety Course

NTU Sweety Course

在台大課程網搜尋課程、或是在台大課程網的課表,這個擴充套件可以讓你能點擊課程的流水號來查看成績分布。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "NTU Sweety Course",
  "version": "2.0.3",
  "description": "在台大課程網搜尋課程、或是在台大課程網的課表,這個擴充套件可以讓你能點擊課程的流水號來查看成績分布。",
  "content_scripts": [
    {
      "matches": [
        "*://nol.ntu.edu.tw/nol/coursesearch/search*",
        "*://nol2.aca.ntu.edu.tw/nol/coursesearch/search*"
      ],
      "js": [
        "search.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://nol2.aca.ntu.edu.tw/nol/coursesearch/myschedule.php",
        "*://nol.ntu.edu.tw/nol/coursesearch/myschedule.php"
      ],
      "js": [
        "schedule.js"
      ],
      "run_at": "document_end"
    }
  ]
}