VUT IS Enhanced

VUT IS Enhanced

Fixing the tables in electronical record book (el. index).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VUT IS Enhanced",
  "description": "Fixing the tables in electronical record book (el. index).",
  "version": "1.0",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "images/logo_128.png"
  },
  "icons": {
    "32": "images/logo_32.png",
    "64": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.vut.cz/studis/student.phtml?sn=el_index"
      ],
      "js": [
        "src/studis/el_index.ts"
      ],
      "css": [
        "styles/global.css"
      ]
    },
    {
      "matches": [
        "*://*.vut.cz/studis/student.phtml?sn=predmet_detail*",
        "*://*.vut.cz/studis/student.phtml?script_name=predmet_detail&apid=*&akce=hodnoceni"
      ],
      "js": [
        "src/studis/subject_page.ts"
      ],
      "css": [
        "styles/global.css"
      ]
    },
    {
      "matches": [
        "*://*.vut.cz/studis/student.phtml?script_name=predmet_detail&apid=*&akce=tymy"
      ],
      "js": [
        "src/studis/subject_teams.ts"
      ],
      "css": [
        "styles/global.css"
      ]
    }
  ]
}