Kit Ilias OpenCast Downloader

Downloads lecture recordings from KIT Ilias

ما هو Kit Ilias OpenCast Downloader؟

Kit Ilias OpenCast Downloader هو إضافة Chrome تم تطويرها بواسطة SeineEloquenz، والميزة الرئيسية لها هي "Downloads lecture recordings from KIT Ilias".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Kit Ilias OpenCast Downloader

قم بتنزيل ملفات الامتداد Kit Ilias OpenCast Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension simplifies the process of downloading videos from the Ilias system of Karlsruher Institut für Technologie.

If you wanted to download recordings manually, you'd have to search for the link to the video file in the page source.
This extension automates that process.                    

معلومات أساسية عن التمديد

الاسم Kit Ilias OpenCast Downloader Kit Ilias OpenCast Downloader
ID ocemimikpbpokinfnnncaeamaffpgepb
عنوان URL الرسمي https://chromewebstore.google.com/detail/kit-ilias-opencast-downlo/ocemimikpbpokinfnnncaeamaffpgepb
الوصف Downloads lecture recordings from KIT Ilias
حجم الملف 23.6 KB
عدد التثبيتات 1,058
النسخة الحالية 1.4.1
آخر تحديث 2022-02-01
تاريخ النشر 2020-07-20
تقييم 5.00/5 مجموع تقييمات 7
المطور SeineEloquenz
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/SeineEloquenz/kit-ilias-opencast-downloader
عنوان صفحة المساعدة https://github.com/SeineEloquenz/kit-ilias-opencast-downloader/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kit Ilias OpenCast Downloader",
    "author": "Alexander Linder",
    "version": "1.4.1",
    "description": "Downloads lecture recordings from KIT Ilias",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "128": "icon128.png"
        },
        "default_title": "Download video"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/ilias.studium.kit.edu\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}