Canvas Dashboard Grades

A simple extension that adds your current grades to the dashboard in Canvas LMS

What is Canvas Dashboard Grades?

Canvas Dashboard Grades is a Chrome extension developed by Unknown, and its main feature is "A simple extension that adds your current grades to the dashboard in Canvas LMS".

Extension Screenshots

screenshot
screenshot

Download Canvas Dashboard Grades Extension CRX File

Download Canvas Dashboard Grades 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

                        This extension aims to replicate the "show grades" toggle option in the mobile app that for some reason doesn't exist on the website. This is NOT an official extension, just a random guy working on a fun and simple coding project in his spare time. Your grades are never sent to me as everything is handled on your computer. It uses the official Canvas API to grab your grades and overlays them on the dashboard's card view, so you'll want to make sure you set your dashboard view to "Card View" by clicking on the three vertical dots in the upper right corner and selecting the card view option.                    

Extension Basic Information

Name Canvas Dashboard Grades Canvas Dashboard Grades
ID jnlnibjgafmamocabdhidiaajkdphkpe
Official URL https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe
Description A simple extension that adds your current grades to the dashboard in Canvas LMS
File Size 21.37 KB
Installation Count 1,861
Current Version 1.0
Last Updated 2019-12-10
Publish Date 2019-12-09
Rating 4.44/5 Total 9 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/budsterblue/CanvasDashboardGrades
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Dashboard Grades",
    "short_name": "CDG",
    "description": "A simple extension that adds your current grades to the dashboard in Canvas LMS",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}