CanvasGrade

Displays hidden grades

What is CanvasGrade?

CanvasGrade is a Chrome extension developed by Jack Hughes, and its main feature is "Displays hidden grades".

Extension Screenshots

screenshot

Download CanvasGrade Extension CRX File

Download CanvasGrade 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

                        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]                    

Extension Basic Information

Name CanvasGrade CanvasGrade
ID cbinmjekhdabagpnjoakcackljbdeikk
Official URL https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk
Description Displays hidden grades
File Size 64.1 KB
Installation Count 150
Current Version 3.0
Last Updated 2021-04-21
Publish Date 2020-10-21
Rating 5.00/5 Total 1 Ratings
Developer Jack Hughes
Email [email protected]
Payment Type free
Help Page URL https://forms.gle/eZD9ZxtdTfeLdvaW7
Supported Languages 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"
        }
    ]
}