Moodle Rubric Importer

Moodle Rubric Importer

Adds a button to autofill a Moodle rubric from an Excel file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Moodle Rubric Importer",
  "description": "Adds a button to autofill a Moodle rubric from an Excel file",
  "version": "1.2",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "./scripts/libs/xlsx.full.min.js",
        "./scripts/content.js"
      ],
      "css": [
        "styles/main.css"
      ],
      "matches": [
        "https://*/grade/grading/form/rubric/edit.php?areaid=*"
      ]
    }
  ]
}