Youtube Subtitle Downloader

Download subtitle (Closed Caption) from YouTube

Youtube Subtitle Downloader란 무엇입니까?

Youtube Subtitle Downloader은(는) lockex1987에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download subtitle (Closed Caption) from YouTube"입니다.

확장 프로그램 스크린샷

screenshot

Youtube Subtitle Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - Check every YouTube video, and notify to the user (no subtitle or download links)
- Convert from YouTube timed format to popular SRT format
- Easy, lightweight
- Use mostly only pure client-side JavaScript
- This add-on does not support auto-generated subtitles (not yet)
- Firefox link: https://addons.mozilla.org/en-US/firefox/addon/youtube-subtitle-downloader/
- Chrome link: https://chrome.google.com/webstore/detail/youtube-subtitle-download/falajjjalaffofcbkhgdemihkpllibom                    

확장 프로그램 기본 정보

이름 Youtube Subtitle Downloader Youtube Subtitle Downloader
ID falajjjalaffofcbkhgdemihkpllibom
공식 URL https://chrome.google.com/webstore/detail/youtube-subtitle-download/falajjjalaffofcbkhgdemihkpllibom
설명 Download subtitle (Closed Caption) from YouTube
파일 크기 31.29 KB
설치 횟수 6,000
현재 버전 3.0.0
최근 업데이트 2021-11-14
출시 날짜 2019-09-27
평점 2.78/5 총 18 개의 평점
개발자 lockex1987
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Subtitle Downloader",
    "version": "3.0.0",
    "description": "Download subtitle (Closed Caption) from YouTube",
    "icons": {
        "48": "images\/download-64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "all_frames": false,
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/common.js",
        "js\/gui.js",
        "js\/timed-to-srt-converter.js",
        "js\/youtube-subtitle-downloader.js"
    ]
}