Canvas Class Average

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

Wat is Canvas Class Average?

Canvas Class Average is een Chrome-extensie ontwikkeld door devconifer, en de belangrijkste functie is "Extension for computing the class average in Canvas using the published score details of graded assignments.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Canvas Class Average

Download Canvas Class Average-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Canvas Class Average Canvas Class Average
ID nddjlihpgdoojhdencidjolehihmflgm
Officiële URL https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm
Beschrijving Extension for computing the class average in Canvas using the published score details of graded assignments.
Bestandsgrootte 26.08 KB
Aantal Installaties 81
Huidige Versie 0.0.1
Laatst Bijgewerkt 2023-08-22
Publicatiedatum 2023-08-21
Ontwikkelaar devconifer
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dburenok/canvas-class-average
Ondersteunde Talen 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"
            ]
        }
    ]
}