DKU Video Downloader

클릭 몇 번으로 간편하게 이러닝 강의를 저장하고 복습하세요!

Vad är DKU Video Downloader?

DKU Video Downloader är en Chrome-tillägg utvecklad av zrunkr, och dess huvudfunktion är "클릭 몇 번으로 간편하게 이러닝 강의를 저장하고 복습하세요!".

Tilläggsskärmbilder

screenshot

Ladda ner DKU Video Downloader-förlängningens CRX-fil

Ladda ner DKU Video Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        단국대학교 이러닝 강의컨텐츠 다운로더 프로그램입니다.

새로운 이러닝의 강의컨텐츠 영상은 열람 기간이 정해져 있거나, 완강하지 않으면 앞의 내용을 볼 수 없고, 배속 시 딜레이가 발생하는 등 불편함이 많아서 마음 편하게 강의 동영상을 다운로드 받아 놓고 보기 위해 제작했습니다.

- 업데이트 사항 - v0.3
1) 한 페이지에서 최대 5개의 강의를 인식합니다. (따라서 스캔 버튼이 하나로 통일되었으며, 인식된 순서에서 다운받을 영상을 선택할 수 있습니다)
2) 영상을 다운받기 전에 파일 이름을 바로 지정할 수 있습니다.
3) 일부 강의가 다운로드되지 않는 현상이 해결되었습니다.

- 사용방법은 프로그램에서 [사용법/제작자] 항목을 참고하세요.

- 단국대학교 이러닝 사이트에서만 프로그램을 사용할 수 있습니다.

- 본 프로그램은 학교/관련 기관과 어떠한 관련도 없으며, 학교/기관에서 보증하지 않습니다.

- 본 프로그램으로 어떠한 수익도 창출하지 않습니다. 또한 이러닝 강의 인식 및 다운로드 기능만 포함되어 있으니 안심하고 쓰셔도 됩니다.

- 사용 중의 버그, 프로그램에 대한 아이디어나 기여를 하고 싶으시다면 깃허브 레파지토리를 참고해주세요.

- 본 프로젝트는 MIT License의 오픈소스 프로젝트이며 깃허브에 코드가 공개되어 있습니다. 이를 활용하여 LearningX 시스템 기반의 타학교 이러닝 시스템에 변형하여 적용할 수 있습니다.

-----

by zini @ Software Dept. of Dankook Univ
MIT License, 2020                    

Grundläggande Information om Tillägg

Namn DKU Video Downloader DKU Video Downloader
ID defdpphnlpilkneopmaafiakomkflpgj
Officiell webbadress https://chrome.google.com/webstore/detail/dku-video-downloader/defdpphnlpilkneopmaafiakomkflpgj
Beskrivning 클릭 몇 번으로 간편하게 이러닝 강의를 저장하고 복습하세요!
Filstorlek 170 KB
Antal Installationer 1,030
Aktuell Version 0.3
Senast Uppdaterad 2020-09-16
Publiceringsdatum 2020-09-11
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare zrunkr
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/zinirun/LMSDownloader
Hjälpsida URL https://zinirun.github.io/LMSDownloader/index.html
Stödda Språk ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DKU Video Downloader",
    "version": "0.3",
    "author": "zini",
    "description": "\ud074\ub9ad \uba87 \ubc88\uc73c\ub85c \uac04\ud3b8\ud558\uac8c \uc774\ub7ec\ub2dd \uac15\uc758\ub97c \uc800\uc7a5\ud558\uace0 \ubcf5\uc2b5\ud558\uc138\uc694!",
    "browser_action": {
        "name": "DKU Video Downloader",
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dankook.commsonscdn.com\/*"
            ],
            "js": [
                "popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "downloads",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}