CanvasGrade
Displays hidden grades
Wat is CanvasGrade?
CanvasGrade is een Chrome-extensie ontwikkeld door Jack Hughes, en de belangrijkste functie is "Displays hidden grades".
Extensie Screenshots
Download het CRX-bestand van de extensie CanvasGrade
Download CanvasGrade-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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]
Basisinformatie over de Extensie
Naam | CanvasGrade |
ID | cbinmjekhdabagpnjoakcackljbdeikk |
Officiële URL | https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk |
Beschrijving | Displays hidden grades |
Bestandsgrootte | 64.1 KB |
Aantal Installaties | 150 |
Huidige Versie | 3.0 |
Laatst Bijgewerkt | 2021-04-21 |
Publicatiedatum | 2020-10-21 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Jack Hughes |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://forms.gle/eZD9ZxtdTfeLdvaW7 |
Ondersteunde Talen | 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" } ] } |