CanvasGrade
Displays hidden grades
Cos'è CanvasGrade?
CanvasGrade è un'estensione di Chrome sviluppata da Jack Hughes, e la sua funzione principale è "Displays hidden grades".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CanvasGrade
Scarica i file di estensione CanvasGrade 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
Stressed about your hidden grades? This extension will reveal your overall grades. It includes full support for classes with weighted categories and displays your total points and overall grade in each class on the canvas grades page. It also includes support for canvas's native "what-if-scores" and will recalculate your overall grade when you update one of these scores. Update: Version 3.0 (4/20/21) What's new: - Update All classes button - Weighted class options! Customize the weights of your classes - Weighted class "Always zero percent" bugfix If you have any problems please feel free to email me at any time: [email protected]
Informazioni di Base sull'Estensione
Nome | CanvasGrade |
ID | cbinmjekhdabagpnjoakcackljbdeikk |
URL Ufficiale | https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk |
Descrizione | Displays hidden grades |
Dimensione del File | 64.1 KB |
Conteggio Installazioni | 150 |
Versione Corrente | 3.0 |
Ultimo Aggiornamento | 2021-04-21 |
Data di Pubblicazione | 2020-10-21 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Jack Hughes |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://forms.gle/eZD9ZxtdTfeLdvaW7 |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CanvasGrade", "version": "3.0", "version_name": "3.0", "description": "Displays hidden grades", "author": "Jack Hughes", "permissions": [ "https:\/\/kentdenver.instructure.com\/courses\/*\/grades", "tabs", "storage", "windows" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png" }, "icons": { "64": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/courses\/*\/grades" ], "js": [ "modifier.js" ], "run_at": "document_end" } ] } |