Canvas Dashboard Grades
A simple extension that adds your current grades to the dashboard in Canvas LMS
Co je Canvas Dashboard Grades?
Canvas Dashboard Grades je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „A simple extension that adds your current grades to the dashboard in Canvas LMS“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Canvas Dashboard Grades
Stáhněte si soubory rozšíření Canvas Dashboard Grades ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Canvas Dashboard Grades |
ID | jnlnibjgafmamocabdhidiaajkdphkpe |
Oficiální URL | https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe |
Popis | A simple extension that adds your current grades to the dashboard in Canvas LMS |
Velikost souboru | 21.37 KB |
Počet instalací | 1,861 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2019-12-10 |
Datum Vydání | 2019-12-09 |
Hodnocení | 4.44/5 Celkem 9 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/budsterblue/CanvasDashboardGrades |
Podporované Jazyky | 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" ] } ] } |