Canvas Class Average
Extension for computing the class average in Canvas using the published score details of graded assignments.
Co to jest Canvas Class Average?
Canvas Class Average to rozszerzenie Chrome opracowane przez devconifer, a jego główną funkcją jest „Extension for computing the class average in Canvas using the published score details of graded assignments.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Canvas Class Average
Pobierz pliki rozszerzeń Canvas Class Average w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Canvas Class Average |
ID | nddjlihpgdoojhdencidjolehihmflgm |
Oficjalny URL | https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm |
Opis | Extension for computing the class average in Canvas using the published score details of graded assignments. |
Rozmiar pliku | 26.08 KB |
Liczba instalacji | 81 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2023-08-22 |
Data Publikacji | 2023-08-21 |
Deweloper | devconifer |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/dburenok/canvas-class-average |
Obsługiwane Języki | 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" ] } ] } |