HKUST Timetable Planner Stylus

HKUST Timetable Planner Stylus

Customize your Timetable Ext Planner!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HKUST Timetable Planner Stylus",
  "description": "Customize your Timetable Ext Planner!",
  "version": "2.0",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://admlu65.ust.hk/"
      ],
      "js": [
        "pageScript.js"
      ],
      "world": "MAIN"
    }
  ],
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "externally_connectable": {
    "matches": [
      "https://admlu65.ust.hk/"
    ]
  }
}