Canvas Quiz Printer

Easily print quizzes from Canvas.

Was ist Canvas Quiz Printer?

Canvas Quiz Printer ist eine Chrome-Erweiterung, die von https://peterfoxflick.com entwickelt wurde, und ihr Hauptmerkmal ist "Easily print quizzes from Canvas.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Canvas Quiz Printer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Canvas Quiz Printer-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

                        The Canvas Quiz Printer provides a simple way to print off a quiz from Canvas. All you have to do is navigate to the quiz from within canvas and click on the print icon to the right of the URL bar. A new page will open with your quiz ready to be printed off. 

To use: Go to a quiz in canvas, click on the quiz print icon in the top right of the navigation bar.                    

Grundlegende Informationen zur Erweiterung

Name Canvas Quiz Printer Canvas Quiz Printer
ID aolnbenhahgdmbdgjdkphepifgdnphcl
Offizielle URL https://chromewebstore.google.com/detail/canvas-quiz-printer/aolnbenhahgdmbdgjdkphepifgdnphcl
Beschreibung Easily print quizzes from Canvas.
Dateigröße 23.95 KB
Installationsanzahl 28,215
Aktuelle Version 0.2.0
Letztes Update 2021-05-15
Veröffentlichungsdatum 2019-10-22
Bewertung 3.88/5 Insgesamt 25 Bewertungen
Entwickler https://peterfoxflick.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/peterfoxflick/CanvasQuizPrinter
Hilfeseite URL https://github.com/peterfoxflick/CanvasQuizPrinter/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Quiz Printer",
    "version": "0.2.0",
    "description": "Easily print quizzes from Canvas.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/*\/quizzes\/*",
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Print this Quiz",
        "default_icon": "icon16.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/kit.fontawesome.com https:\/\/unpkg.com https:\/\/www.google-analytics.com; object-src 'self'"
}