Canvas Class Average

Extension for computing the class average in Canvas using the published score details of graded assignments.

Canvas Class Average là gì?

Canvas Class Average là một tiện ích mở rộng Chrome được phát triển bởi devconifer, và tính năng chính của nó là "Extension for computing the class average in Canvas using the published score details of graded assignments.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Canvas Class Average

Tải xuống các tệp mở rộng Canvas Class Average dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Canvas Class Average Canvas Class Average
ID nddjlihpgdoojhdencidjolehihmflgm
URL Chính Thức https://chromewebstore.google.com/detail/canvas-class-average/nddjlihpgdoojhdencidjolehihmflgm
Mô tả Extension for computing the class average in Canvas using the published score details of graded assignments.
Kích Thước Tệp 26.08 KB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2023-08-22
Ngày Phát Hành 2023-08-21
Nhà Phát Triển devconifer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dburenok/canvas-class-average
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}