Moodle Mass Downloader

Mass Download a moodle courses files

Что такое Moodle Mass Downloader?

Moodle Mass Downloader - это расширение Chrome, разработанное Tomer Keren, и его основная функция - "Mass Download a moodle courses files".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Moodle Mass Downloader

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

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

                        A simple extention to help you mass download sections of moodle courses... _just in case it crashes again_.                    

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

Название Moodle Mass Downloader Moodle Mass Downloader
ID cibfhhncgchiihdnemimipceamplooeo
Официальный URL https://chromewebstore.google.com/detail/moodle-mass-downloader/cibfhhncgchiihdnemimipceamplooeo
Описание Mass Download a moodle courses files
Размер файла 22.23 KB
Количество установок 403
Текущая Версия 1.07
Последнее Обновление 2018-05-16
Дата публикации 2018-05-16
Рейтинг 4.29/5 Всего 7 оценок
Разработчик Tomer Keren
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Tadaboody/Moodle-Mass-Downloader
URL страницы помощи https://github.com/Tadaboody/Moodle-Mass-Downloader
Поддерживаемые языки iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moodle Mass Downloader",
    "short_name": "Moodle Downloader",
    "description": "Mass Download a moodle courses files",
    "version": "1.07",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon24.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ac.il\/*course\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*.ac.il\/*cs\/*",
        "downloads"
    ]
}