Canvas Class Average

Canvas Class Average

Extension for computing the class average in Canvas using the published score details of graded assignments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Canvas Class Average",
  "description": "Extension for computing the class average in Canvas using the published score details of graded assignments.",
  "version": "0.0.1",
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/overwrites.css"
      ],
      "matches": [
        "https://canvas.ubc.ca/courses/*/grades"
      ]
    }
  ]
}