Study Tools voor Magister

Study Tools voor Magister

Een extensie die verschillende aspecten van Magister verbetert en problemen ermee oplost.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "$schema": "https://json.schemastore.org/chrome-manifest",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "3.10.1",
  "default_locale": "nl",
  "icons": {
    "16": "icons/[email protected]",
    "32": "icons/[email protected]",
    "48": "icons/[email protected]",
    "64": "icons/[email protected]",
    "128": "icons/[email protected]",
    "256": "icons/[email protected]",
    "300": "icons/[email protected]",
    "512": "icons/[email protected]"
  },
  "minimum_chrome_version": "109",
  "background": {
    "service_worker": "src/service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.magister.net/*",
        "*://login.microsoftonline.com/*/oauth2/authorize*"
      ],
      "js": [
        "src/magister/scripts/api.js",
        "src/util.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.magister.net/*"
      ],
      "js": [
        "src/magister/scripts/style.js"
      ],
      "css": [
        "src/magister/styles/main.css",
        "src/magister/styles/gamification.css",
        "src/magister/styles/today.css",
        "src/magister/styles/grades.css",
        "src/magister/styles/studyguide.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.magister.net/magister/*"
      ],
      "js": [
        "src/magister/scripts/main.js",
        "src/magister/scripts/gamification.js",
        "src/magister/scripts/today.js",
        "src/magister/scripts/grades.js",
        "src/magister/scripts/studyguide.js",
        "src/magister/scripts/books.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://accounts.magister.net/account/login*"
      ],
      "js": [
        "src/magister/scripts/login.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://login.microsoftonline.com/*/oauth2/authorize*"
      ],
      "js": [
        "src/other/microsoft-login.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_locales/nl/strings.json",
        "_locales/en/strings.json",
        "_locales/fr/strings.json",
        "_locales/de/strings.json",
        "_locales/la/strings.json"
      ],
      "matches": [
        "*://*.magister.net/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/[email protected]",
      "32": "icons/[email protected]",
      "48": "icons/[email protected]",
      "64": "icons/[email protected]",
      "128": "icons/[email protected]",
      "256": "icons/[email protected]",
      "300": "icons/[email protected]",
      "512": "icons/[email protected]"
    },
    "default_popup": "popup/dist/index.html",
    "default_title": "__MSG_appName__\nKlik om te configureren"
  },
  "options_page": "popup/dist/index.html",
  "options_ui": {
    "page": "popup/dist/index.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "*://*.magister.net/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}