Canvas Dashboard Grades
A simple extension that adds your current grades to the dashboard in Canvas LMS
Qu'est-ce que Canvas Dashboard Grades ?
Canvas Dashboard Grades est une extension Chrome développée par Unknown, et sa fonction principale est "A simple extension that adds your current grades to the dashboard in Canvas LMS".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Canvas Dashboard Grades
Téléchargez les fichiers d'extension Canvas Dashboard Grades au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Canvas Dashboard Grades |
ID | jnlnibjgafmamocabdhidiaajkdphkpe |
URL Officiel | https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe |
Description | A simple extension that adds your current grades to the dashboard in Canvas LMS |
Taille du Fichier | 21.37 KB |
Nombre d'Installations | 1,861 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2019-12-10 |
Date de Publication | 2019-12-09 |
Évaluation | 4.44/5 Total 9 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/budsterblue/CanvasDashboardGrades |
Langues Prises en Charge | 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" ] } ] } |