Blackboard Learn Exam Printing

This extension prints exams attempts from Blackboard Learn (developed by Imtiaz Ahmad)

Что такое Blackboard Learn Exam Printing?

Blackboard Learn Exam Printing - это расширение Chrome, разработанное Imtiaz, и его основная функция - "This extension prints exams attempts from Blackboard Learn (developed by Imtiaz Ahmad)".

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

screenshot

Скачать файл CRX расширения Blackboard Learn Exam Printing

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

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

                        This Google Chrome extension will help the educators to take a print (or convert to PDF using "Save as PDF" option of Chrome) of student attempt. If you do not use this extension, you will get only one page as print as visible part of current tab.                    

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

Название Blackboard Learn Exam Printing Blackboard Learn Exam Printing
ID aelhoojncpjocgdcgjfhfgmdklbidflh
Официальный URL https://chromewebstore.google.com/detail/blackboard-learn-exam-pri/aelhoojncpjocgdcgjfhfgmdklbidflh
Описание This extension prints exams attempts from Blackboard Learn (developed by Imtiaz Ahmad)
Размер файла 16.66 KB
Количество установок 1,272
Текущая Версия 1.80
Последнее Обновление 2015-12-15
Дата публикации 2015-12-14
Рейтинг 5.00/5 Всего 12 оценок
Разработчик Imtiaz
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blackboard Learn Exam Printing",
    "description": "This extension prints exams attempts from Blackboard Learn (developed by Imtiaz Ahmad)",
    "version": "1.80",
    "short_name": "BBL Exam Print",
    "icons": {
        "16": "images\/icon48.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon48.png",
            "38": "images\/icon128.png"
        },
        "default_title": "Click here to print BBLearn Exam"
    },
    "background": {
        "matches": [
            "https:\/\/mylearn.hct.ac.ae\/*"
        ],
        "scripts": [
            "scripts\/clickscript.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/webapps\/assessment\/do\/gradeTest?outcomeDefinitionId*"
            ],
            "js": [
                "scripts\/clickscript.js",
                "scripts\/bblprint.js"
            ],
            "run_at": "document_end"
        }
    ],
    "author": "Imtiaz Ahmad",
    "manifest_version": 2
}