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.”。

擴展截圖

screenshot

下載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 Canvas Class Average
ID nddjlihpgdoojhdencidjolehihmflgm
官方網址 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"
            ]
        }
    ]
}