Canvas Class Average
Extension for computing the class average in Canvas using the published score details of graded assignments.
What is Canvas Class Average?
Canvas Class Average is a Chrome extension developed by devconifer, and its main feature is "Extension for computing the class average in Canvas using the published score details of graded assignments.".
Extension Screenshots
Download Canvas Class Average Extension CRX File
Download Canvas Class Average extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Canvas Class Average |
ID | nddjlihpgdoojhdencidjolehihmflgm |
Official URL | https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm |
Description | Extension for computing the class average in Canvas using the published score details of graded assignments. |
File Size | 26.08 KB |
Installation Count | 81 |
Current Version | 0.0.1 |
Last Updated | 2023-08-22 |
Publish Date | 2023-08-21 |
Developer | devconifer |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/dburenok/canvas-class-average |
Supported Languages | 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" ] } ] } |