Better Moodle

Better Moodle

A browser addon that improves the AAU moodle experience

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Moodle",
  "version": "1.2",
  "description": "A browser addon that improves the AAU moodle experience",
  "icons": {
    "16": "images/logo-mi-16.png",
    "32": "images/logo-mi-32.png",
    "48": "images/logo-mi-48.png",
    "128": "images/logo-mi-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.moodle.aau.dk/*"
      ],
      "css": [
        "main.css"
      ]
    },
    {
      "matches": [
        "https://www.moodle.aau.dk/local/planning/calendar.php"
      ],
      "js": [
        "scripts/calendar.js"
      ]
    }
  ]
}