Canvas Dashboard Grades

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

Was ist Canvas Dashboard Grades?

Canvas Dashboard Grades ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension that adds your current grades to the dashboard in Canvas LMS".

Erweiterungsscreenshots

screenshot
screenshot

Canvas Dashboard Grades-Erweiterungs-CRX-Datei herunterladen

Laden Sie Canvas Dashboard Grades-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Canvas Dashboard Grades Canvas Dashboard Grades
ID jnlnibjgafmamocabdhidiaajkdphkpe
Offizielle URL https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe
Beschreibung A simple extension that adds your current grades to the dashboard in Canvas LMS
Dateigröße 21.37 KB
Installationsanzahl 1,861
Aktuelle Version 1.0
Letztes Update 2019-12-10
Veröffentlichungsdatum 2019-12-09
Bewertung 4.44/5 Insgesamt 9 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/budsterblue/CanvasDashboardGrades
Unterstützte Sprachen 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"
            ]
        }
    ]
}