Examine source code of NTUST GPA Extension

Inspect and view changes in NTUST GPA Extension 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": "NTUST GPA Extension",
  "version": "0.0.3",
  "description": "選課時查詢課程GPA的小工具",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://querycourse.ntust.edu.tw/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icons/icon.png"
  }
}