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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Canvas Class Average
قم بتنزيل ملفات الامتداد Canvas Class Average بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |