KPI scedule fixer

KPI scedule fixer

The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1",
  "name": "KPI scedule fixer",
  "description": "The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects",
  "content_scripts": [
    {
      "matches": [
        "*://*.rozklad.kpi.ua/*"
      ],
      "js": [
        "KPI_Scedule_fixer.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "KPI Scedule fixer",
    "default_icon": "icon-128.png",
    "default_popup": "popup.html"
  }
}