Canvas Class Average
Extension for computing the class average in Canvas using the published score details of graded assignments.
Hvad er Canvas Class Average?
Canvas Class Average er en Chrome-udvidelse udviklet af devconifer, og dens hovedfunktion er "Extension for computing the class average in Canvas using the published score details of graded assignments.".
Udvidelsesskærmbilleder
Download Canvas Class Average-udvidelses-CRX-fil
Download Canvas Class Average-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nddjlihpgdoojhdencidjolehihmflgm |
| Officiel URL | https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm |
| Beskrivelse | Extension for computing the class average in Canvas using the published score details of graded assignments. |
| Filstørrelse | 26.08 KB |
| Antal Installationer | 81 |
| Nuværende Version | 0.0.1 |
| Senest Opdateret | 2023-08-22 |
| Udgivelsesdato | 2023-08-21 |
| Udvikler | devconifer |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/dburenok/canvas-class-average |
| Understøttede Sprog | 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"
]
}
]
} | |