Youtube Subtitle Downloader

Download subtitle (Closed Caption) from YouTube

Что такое Youtube Subtitle Downloader?

Youtube Subtitle Downloader - это расширение Chrome, разработанное lockex1987, и его основная функция - "Download subtitle (Closed Caption) from YouTube".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Youtube Subtitle Downloader

Скачайте файлы расширений 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
Официальный 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"
    ]
}