Canvas Class Average
Extension for computing the class average in Canvas using the published score details of graded assignments.
什么是Canvas Class Average?
Canvas Class Average是由devconifer开发的Chrome扩展程序,该扩展的主要功能是“Extension for computing the class average in Canvas using the published score details of graded assignments.”。
扩展截图
下载Canvas Class Average扩展crx文件
下载Canvas Class Average扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Canvas Class Average |
ID | nddjlihpgdoojhdencidjolehihmflgm |
官方URL | https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm |
简介 | Extension for computing the class average in Canvas using the published score details of graded assignments. |
文件大小 | 26.08 KB |
安装次数 | 81 |
当前版本 | 0.0.1 |
更新时间 | 2023-08-22 |
上架时间 | 2023-08-21 |
开发者 | devconifer |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/dburenok/canvas-class-average |
支持的语言 | 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" ] } ] } |