Canvas Class Average

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

Co je Canvas Class Average?

Canvas Class Average je rozšíření Chrome vyvinuté devconifer, a jeho hlavní funkcí je „Extension for computing the class average in Canvas using the published score details of graded assignments.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Canvas Class Average

Stáhněte si soubory rozšíření Canvas Class Average ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Canvas Class Average Canvas Class Average
ID nddjlihpgdoojhdencidjolehihmflgm
Oficiální URL https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm
Popis Extension for computing the class average in Canvas using the published score details of graded assignments.
Velikost souboru 26.08 KB
Počet instalací 81
Aktuální Verze 0.0.1
Poslední Aktualizace 2023-08-22
Datum Vydání 2023-08-21
Vývojář devconifer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/dburenok/canvas-class-average
Podporované Jazyky 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"
            ]
        }
    ]
}