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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย devconifer และคุณลักษณะหลักของมันคือ "Extension for computing the class average in Canvas using the published score details of graded assignments."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Canvas Class Average

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}