Youtube Subtitle Downloader

Download subtitle (Closed Caption) from YouTube

Cos'è Youtube Subtitle Downloader?

Youtube Subtitle Downloader è un'estensione di Chrome sviluppata da lockex1987, e la sua funzione principale è "Download subtitle (Closed Caption) from YouTube".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Subtitle Downloader

Scarica i file di estensione Youtube Subtitle Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        - 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                    

Informazioni di Base sull'Estensione

Nome Youtube Subtitle Downloader Youtube Subtitle Downloader
ID falajjjalaffofcbkhgdemihkpllibom
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-subtitle-download/falajjjalaffofcbkhgdemihkpllibom
Descrizione Download subtitle (Closed Caption) from YouTube
Dimensione del File 31.29 KB
Conteggio Installazioni 6,000
Versione Corrente 3.0.0
Ultimo Aggiornamento 2021-11-14
Data di Pubblicazione 2019-09-27
Valutazione 2.78/5 Totale 18 Valutazioni
Sviluppatore lockex1987
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}