Canvas Grades Extension
An Extension to view all your Grades on the Courses Pages!
Что такое Canvas Grades Extension?
Canvas Grades Extension - это расширение Chrome, разработанное anish.kondepudi, и его основная функция - "An Extension to view all your Grades on the Courses Pages!".
Снимки экрана расширения
Скачать файл CRX расширения Canvas Grades Extension
Скачайте файлы расширений Canvas Grades Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The purpose of this Chrome Extension is to give an easy to use, organized view of students' grades, as well as links to those grades and other important files from all classes on the dashboard, which is the default page that the student goes to when they sign in to Canvas. Note that for the extension to function properly, the user must be using Card View on their Canvas Dashboard and must be a student at UC Davis - the extension may or may not work for other universities/schools.
Основная информация о расширении
Название | |
ID | fneahceogligokfcllminogbilaamgbd |
Официальный URL | https://chromewebstore.google.com/detail/canvas-grades-extension/fneahceogligokfcllminogbilaamgbd |
Описание | An Extension to view all your Grades on the Courses Pages! |
Размер файла | 490 KB |
Количество установок | 3,088 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2020-12-20 |
Дата публикации | 2020-12-02 |
Рейтинг | 5.00/5 Всего 11 оценок |
Разработчик | anish.kondepudi |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/anish-kondepudi/canvas-grades-extension |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Grades Extension", "version": "0.0.0.3", "description": "An Extension to view all your Grades on the Courses Pages!", "content_scripts": [ { "matches": [ "https:\/\/*\/" ], "js": [ "EditDashboard.js" ] } ], "icons": { "128": "canvas_logo.png", "48": "canvas_logo.png", "16": "canvas_logo.png" }, "browser_action": { "default_icon": "canvas_logo.png", "default_popup": "popup.html", "default_title": "Canvas Grades Extension" } } |