YT Transcript Downloader
Download transcript of youtube video
O que é YT Transcript Downloader?
YT Transcript Downloader é uma extensão do Chrome desenvolvida por Mizan Rifat, e sua principal característica é "Download transcript of youtube video".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YT Transcript Downloader
Baixe arquivos de extensão YT Transcript Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
The YT Transcript Downloader is a handy Chrome extension that enhances your YouTube experience by adding a convenient download button to video transcripts. Say goodbye to the hassle of copying and pasting transcript text – with this extension, you can effortlessly download the transcript in a simple text (txt) format with just a click. Key Features: Download Transcripts: Seamlessly download YouTube video transcripts in text (txt) format for easy reference and offline reading. Enhanced Convenience: The extension integrates a download button directly into the YouTube interface, simplifying the transcript retrieval process. Time-Saving: No need to manually copy and paste transcript content – save time and effort by downloading transcripts with a single click. Unlock a new level of convenience when using YouTube by adding the YouTube Transcript Downloader to your Chrome browser today!
Informações Básicas da Extensão
Nome | YT Transcript Downloader |
ID | liakknlpjigmkploknohgomhgaenjpom |
URL Oficial | https://chromewebstore.google.com/detail/yt-transcript-downloader/liakknlpjigmkploknohgomhgaenjpom |
Descrição | Download transcript of youtube video |
Tamanho do Arquivo | 11.46 KB |
Contagem de Instalações | 264 |
Versão Atual | 1.0 |
Última Atualização | 2023-11-30 |
Data de Publicação | 2023-09-18 |
Classificação | 4.00/5 Total de 3 Avaliações |
Desenvolvedor | Mizan Rifat |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YT Transcript Downloader", "description": "Download transcript of youtube video", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "content_script.js" ], "css": [ "content_script.css" ] } ], "permissions": [ "tabs" ], "action": { "default_icon": { "16": "\/images\/logo-16x16.png", "32": "\/images\/logo-32x32.png", "48": "\/images\/logo-48x48.png", "128": "\/images\/logo-128x128.png" } }, "icons": { "16": "\/images\/logo-16x16.png", "32": "\/images\/logo-32x32.png", "48": "\/images\/logo-48x48.png", "128": "\/images\/logo-128x128.png" } } |