Canvas Grade Viewer
This extension lets you view your canvas grade average per class, even when total grades are disabled.
Wat is Canvas Grade Viewer?
Canvas Grade Viewer is een Chrome-extensie ontwikkeld door Ethan Vazquez, en de belangrijkste functie is "This extension lets you view your canvas grade average per class, even when total grades are disabled.".
Extensie Screenshots
Download het CRX-bestand van de extensie Canvas Grade Viewer
Download Canvas Grade Viewer-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
*1.9.4 Update* (2/7/2021) - Updated Privacy Policy on Chrome Web Store - Added uninstallation survey (sorry but it's very helpful to keep squashing bugs) Unblock Canvas grades! A simple extension to tally up and accurately display your total grade if it has been disabled. You can also click the "Add to GPA" button to easily organize your grades and calculate your GPA, which is displayed when you click on the extension in top right-hand corner of Chrome. NOTE: this will not show any hidden grades, nor take those into account. Any grades that are not yet graded will be ignored.
Basisinformatie over de Extensie
Naam | Canvas Grade Viewer |
ID | ngmeehoammklkokkbgakeadianldjbaj |
Officiële URL | https://chromewebstore.google.com/detail/canvas-grade-viewer/ngmeehoammklkokkbgakeadianldjbaj |
Beschrijving | This extension lets you view your canvas grade average per class, even when total grades are disabled. |
Bestandsgrootte | 15.24 KB |
Aantal Installaties | 2,016 |
Huidige Versie | 1.9.4 |
Laatst Bijgewerkt | 2021-02-13 |
Publicatiedatum | 2020-05-24 |
Beoordeling | 4.11/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Ethan Vazquez |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Grade Viewer", "description": "This extension lets you view your canvas grade average per class, even when total grades are disabled.", "version": "1.9.4", "author": "Ethan Vazquez", "icons": { "48": "icon38.png" }, "browser_action": { "default_title": "Canvas Grade Viewer", "default_icon": { "19": "icon20.png", "20": "icon20.png", "38": "icon38.png" }, "default_popup": "dashboard.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.instructure.com\/courses\/*\/grades*" ], "js": [ "canvasgradeviewer.client.js" ] } ], "permissions": [ "storage" ], "background": { "scripts": [ "canvasgradeviewer.background.js" ], "persistent": false } } |