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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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
}