CanvasGrade
Displays hidden grades
Co je CanvasGrade?
CanvasGrade je rozšíření Chrome vyvinuté Jack Hughes, a jeho hlavní funkcí je „Displays hidden grades“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření CanvasGrade
Stáhněte si soubory rozšíření CanvasGrade 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í
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]
Základní Informace o Rozšíření
Název | CanvasGrade |
ID | cbinmjekhdabagpnjoakcackljbdeikk |
Oficiální URL | https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk |
Popis | Displays hidden grades |
Velikost souboru | 64.1 KB |
Počet instalací | 150 |
Aktuální Verze | 3.0 |
Poslední Aktualizace | 2021-04-21 |
Datum Vydání | 2020-10-21 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Jack Hughes |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://forms.gle/eZD9ZxtdTfeLdvaW7 |
Podporované Jazyky | 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" } ] } |