Canvas Quiz Printer

Easily print quizzes from Canvas.

Что такое Canvas Quiz Printer?

Canvas Quiz Printer - это расширение Chrome, разработанное https://peterfoxflick.com, и его основная функция - "Easily print quizzes from Canvas.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Canvas Quiz Printer

Скачайте файлы расширений Canvas Quiz Printer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Canvas Quiz Printer Canvas Quiz Printer
ID aolnbenhahgdmbdgjdkphepifgdnphcl
Официальный URL https://chromewebstore.google.com/detail/canvas-quiz-printer/aolnbenhahgdmbdgjdkphepifgdnphcl
Описание Easily print quizzes from Canvas.
Размер файла 23.95 KB
Количество установок 28,215
Текущая Версия 0.2.0
Последнее Обновление 2021-05-15
Дата публикации 2019-10-22
Рейтинг 3.88/5 Всего 25 оценок
Разработчик https://peterfoxflick.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/peterfoxflick/CanvasQuizPrinter
URL страницы помощи https://github.com/peterfoxflick/CanvasQuizPrinter/issues
Поддерживаемые языки 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'"
}