Canvas Grade Viewer

This extension lets you view your canvas grade average per class, even when total grades are disabled.

What is Canvas Grade Viewer?

Canvas Grade Viewer is a Chrome extension developed by Ethan Vazquez, and its main feature is "This extension lets you view your canvas grade average per class, even when total grades are disabled.".

Extension Screenshots

screenshot
screenshot

Download Canvas Grade Viewer Extension CRX File

Download Canvas Grade Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        *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.                    

Extension Basic Information

Name Canvas Grade Viewer Canvas Grade Viewer
ID ngmeehoammklkokkbgakeadianldjbaj
Official URL https://chromewebstore.google.com/detail/canvas-grade-viewer/ngmeehoammklkokkbgakeadianldjbaj
Description This extension lets you view your canvas grade average per class, even when total grades are disabled.
File Size 15.24 KB
Installation Count 2,016
Current Version 1.9.4
Last Updated 2021-02-13
Publish Date 2020-05-24
Rating 4.11/5 Total 9 Ratings
Developer Ethan Vazquez
Email [email protected]
Payment Type free
Supported Languages 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
    }
}