Canvas Dashboard Grades
A simple extension that adds your current grades to the dashboard in Canvas LMS
Cos'è Canvas Dashboard Grades?
Canvas Dashboard Grades è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A simple extension that adds your current grades to the dashboard in Canvas LMS".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Canvas Dashboard Grades
Scarica i file di estensione Canvas Dashboard Grades in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Canvas Dashboard Grades |
ID | jnlnibjgafmamocabdhidiaajkdphkpe |
URL Ufficiale | https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe |
Descrizione | A simple extension that adds your current grades to the dashboard in Canvas LMS |
Dimensione del File | 21.37 KB |
Conteggio Installazioni | 1,861 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-12-10 |
Data di Pubblicazione | 2019-12-09 |
Valutazione | 4.44/5 Totale 9 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/budsterblue/CanvasDashboardGrades |
Lingue Supportate | 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" ] } ] } |