Canvas Dashboard Grades
A simple extension that adds your current grades to the dashboard in Canvas LMS
Что такое Canvas Dashboard Grades?
Canvas Dashboard Grades - это расширение Chrome, разработанное Unknown, и его основная функция - "A simple extension that adds your current grades to the dashboard in Canvas LMS".
Снимки экрана расширения
Скачать файл CRX расширения Canvas Dashboard Grades
Скачайте файлы расширений Canvas Dashboard Grades в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension aims to replicate the "show grades" toggle option in the mobile app that for some reason doesn't exist on the website. This is NOT an official extension, just a random guy working on a fun and simple coding project in his spare time. Your grades are never sent to me as everything is handled on your computer. It uses the official Canvas API to grab your grades and overlays them on the dashboard's card view, so you'll want to make sure you set your dashboard view to "Card View" by clicking on the three vertical dots in the upper right corner and selecting the card view option.
Основная информация о расширении
Название | Canvas Dashboard Grades |
ID | jnlnibjgafmamocabdhidiaajkdphkpe |
Официальный URL | https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe |
Описание | A simple extension that adds your current grades to the dashboard in Canvas LMS |
Размер файла | 21.37 KB |
Количество установок | 1,861 |
Текущая Версия | 1.0 |
Последнее Обновление | 2019-12-10 |
Дата публикации | 2019-12-09 |
Рейтинг | 4.44/5 Всего 9 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/budsterblue/CanvasDashboardGrades |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Dashboard Grades", "short_name": "CDG", "description": "A simple extension that adds your current grades to the dashboard in Canvas LMS", "version": "1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "js": [ "script.js" ] } ] } |