Canvas Toolkit

Improvements for Canvas that give you more information and easier access to grades and assignments.

Was ist Canvas Toolkit?

Canvas Toolkit ist eine Chrome-Erweiterung, die von Matt Aaron entwickelt wurde, und ihr Hauptmerkmal ist "Improvements for Canvas that give you more information and easier access to grades and assignments.".

Erweiterungsscreenshots

screenshot

Canvas Toolkit-Erweiterungs-CRX-Datei herunterladen

Laden Sie Canvas Toolkit-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

                        Get quick access to grades and upcoming assignments on your dashboard, view additional information on assignment and quiz pages, view the overall class average for a course, and see if you'll be able to update or delete your discussion posts before you post them.                    

Grundlegende Informationen zur Erweiterung

Name Canvas Toolkit Canvas Toolkit
ID nndblifdaiopimbaoneanemfokapfcia
Offizielle URL https://chromewebstore.google.com/detail/canvas-toolkit/nndblifdaiopimbaoneanemfokapfcia
Beschreibung Improvements for Canvas that give you more information and easier access to grades and assignments.
Dateigröße 21.06 KB
Installationsanzahl 435
Aktuelle Version 0.0.3
Letztes Update 2021-11-09
Veröffentlichungsdatum 2021-11-03
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Matt Aaron
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas Toolkit",
    "description": "Improvements for Canvas that give you more information and easier access to grades and assignments.",
    "version": "0.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon_16.png",
        "24": "icons\/icon_24.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/"
            ],
            "css": [
                "css\/dashboard\/course_card_details.css"
            ],
            "js": [
                "js\/dashboard\/course_card_details.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/grades*"
            ],
            "js": [
                "js\/grades\/class_average.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/assignments\/*"
            ],
            "js": [
                "js\/assignments\/additional_details.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/quizzes\/*"
            ],
            "js": [
                "js\/quizzes\/additional_details.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/*\/discussion_topics\/*"
            ],
            "js": [
                "js\/discussion_topics\/post_permissions_injector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/discussion_topics\/post_permissions_viewer.js"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ]
        }
    ]
}