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文件

下載Youtube Subtitle Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - 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
官方網址 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"
    ]
}