Canvas Class Average
Extension for computing the class average in Canvas using the published score details of graded assignments.
Cos'è Canvas Class Average?
Canvas Class Average è un'estensione di Chrome sviluppata da devconifer, e la sua funzione principale è "Extension for computing the class average in Canvas using the published score details of graded assignments.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Canvas Class Average
Scarica i file di estensione Canvas Class Average in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Canvas Class Average |
ID | nddjlihpgdoojhdencidjolehihmflgm |
URL Ufficiale | https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm |
Descrizione | Extension for computing the class average in Canvas using the published score details of graded assignments. |
Dimensione del File | 26.08 KB |
Conteggio Installazioni | 81 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2023-08-22 |
Data di Pubblicazione | 2023-08-21 |
Sviluppatore | devconifer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dburenok/canvas-class-average |
Lingue Supportate | 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" ] } ] } |