Canvas Quiz Printer

Easily print quizzes from Canvas.

Vad är Canvas Quiz Printer?

Canvas Quiz Printer är en Chrome-tillägg utvecklad av https://peterfoxflick.com, och dess huvudfunktion är "Easily print quizzes from Canvas.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Canvas Quiz Printer-förlängningens CRX-fil

Ladda ner Canvas Quiz Printer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Canvas Quiz Printer Canvas Quiz Printer
ID aolnbenhahgdmbdgjdkphepifgdnphcl
Officiell webbadress https://chromewebstore.google.com/detail/canvas-quiz-printer/aolnbenhahgdmbdgjdkphepifgdnphcl
Beskrivning Easily print quizzes from Canvas.
Filstorlek 23.95 KB
Antal Installationer 28,215
Aktuell Version 0.2.0
Senast Uppdaterad 2021-05-15
Publiceringsdatum 2019-10-22
Betyg 3.88/5 Totalt 25 Betyg
Utvecklare https://peterfoxflick.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/peterfoxflick/CanvasQuizPrinter
Hjälpsida URL https://github.com/peterfoxflick/CanvasQuizPrinter/issues
Stödda Språk 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'"
}