CSSE Quiz Copy

Adds a button to the UC CSSE Quiz server that copies the testcase examples for you

Что такое CSSE Quiz Copy?

CSSE Quiz Copy - это расширение Chrome, разработанное Unknown, и его основная функция - "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you".

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

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

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

                        Install this if you're sick of the UC CSSE Quiz Server giving terrible feedback with errors or if you just want a faster way of copying the testcases                    

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

Название CSSE Quiz Copy CSSE Quiz Copy
ID fnekceidodfmliaamlcpaaaimmnncdic
Официальный URL https://chromewebstore.google.com/detail/csse-quiz-copy/fnekceidodfmliaamlcpaaaimmnncdic
Описание Adds a button to the UC CSSE Quiz server that copies the testcase examples for you
Размер файла 39.69 KB
Количество установок 23
Текущая Версия 1.0
Последнее Обновление 2018-05-02
Дата публикации 2018-05-01
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSSE Quiz Copy",
    "description": "Adds a button to the UC CSSE Quiz server that copies the testcase examples for you",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/quiz2018.csse.canterbury.ac.nz\/mod\/quiz\/*",
                "https:\/\/quiz2018.csse.canterbury.ac.nz\/mod\/quiz\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab"
    ]
}