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 с друзьями, чтобы легко установить расширения 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" ] } ] } |