Canvas Class Average

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

Was ist Canvas Class Average?

Canvas Class Average ist eine Chrome-Erweiterung, die von devconifer entwickelt wurde, und ihr Hauptmerkmal ist "Extension for computing the class average in Canvas using the published score details of graded assignments.".

Erweiterungsscreenshots

screenshot

Canvas Class Average-Erweiterungs-CRX-Datei herunterladen

Laden Sie Canvas Class Average-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows the user to view the class average in Canvas.

Note: Only works for UBC classes! (for now)

To use, simply install the extension and navigate to the Grades tab under a course page in Canvas.

How It Works

The extension triggers the "Show All Details" button and quickly scans the score details of all graded assignments. We fetch the supplementary 5-year average from UBCGrades.com.                    

Grundlegende Informationen zur Erweiterung

Name Canvas Class Average Canvas Class Average
ID nddjlihpgdoojhdencidjolehihmflgm
Offizielle URL https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm
Beschreibung Extension for computing the class average in Canvas using the published score details of graded assignments.
Dateigröße 26.08 KB
Installationsanzahl 81
Aktuelle Version 0.0.1
Letztes Update 2023-08-22
Veröffentlichungsdatum 2023-08-21
Entwickler devconifer
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dburenok/canvas-class-average
Unterstützte Sprachen en
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"
            ]
        }
    ]
}