RWTH Opencast Downloader

Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.

Что такое RWTH Opencast Downloader?

RWTH Opencast Downloader - это расширение Chrome, разработанное Simon Mangel, и его основная функция - "Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.".

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

screenshot

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

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

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

                        Mit dieser Erweiterung können die MP4-Videodateien des auf dem RWTH Moodle eingebetteten OpenCast/Paella Players einfach heruntergeladen werden, um diese offline zu schauen. 

Neu in Version 0.0.2: Unterstützung des neuen URL-Formates                    

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

Название RWTH Opencast Downloader RWTH Opencast Downloader
ID glkhonkpjnagnkcmhkllaocppalppiao
Официальный URL https://chromewebstore.google.com/detail/rwth-opencast-downloader/glkhonkpjnagnkcmhkllaocppalppiao
Описание Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.
Размер файла 22.66 KB
Количество установок 782
Текущая Версия 0.0.2
Последнее Обновление 2023-08-02
Дата публикации 2022-03-16
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Simon Mangel
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/MangelWare/rwth-opencast-downloader
URL страницы помощи https://github.com/MangelWare/rwth-opencast-downloader/issues
Поддерживаемые языки de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "RWTH Opencast Downloader",
    "version": "0.0.2",
    "icons": {
        "32": "logo_32.png",
        "48": "logo_48.png",
        "64": "logo_64.png",
        "128": "logo_128.png"
    },
    "description": "Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.",
    "author": "Simon Mangel",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/engage.streaming.rwth-aachen.de\/*paella\/ui\/watch.html**"
            ],
            "all_frames": true,
            "js": [
                "opencast-inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "opencast-inject-inner.js"
            ],
            "matches": [
                "https:\/\/engage.streaming.rwth-aachen.de\/*"
            ]
        }
    ]
}