Canvas Dashboard Grades

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

Τι είναι το Canvas Dashboard Grades;

Το Canvas Dashboard Grades είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "A simple extension that adds your current grades to the dashboard in Canvas LMS".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Canvas Dashboard Grades

Λήψη αρχείων επέκτασης Canvas Dashboard Grades σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Canvas Dashboard Grades Canvas Dashboard Grades
ID jnlnibjgafmamocabdhidiaajkdphkpe
Επίσημο URL https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe
Περιγραφή A simple extension that adds your current grades to the dashboard in Canvas LMS
Μέγεθος Αρχείου 21.37 KB
Αριθμός Εγκαταστάσεων 1,861
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-12-10
Ημερομηνία Δημοσίευσης 2019-12-09
Αξιολόγηση 4.44/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/budsterblue/CanvasDashboardGrades
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}