YT Transcript Downloader

Download transcript of youtube video

YT Transcript Downloader란 무엇입니까?

YT Transcript Downloader은(는) Mizan Rifat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download transcript of youtube video"입니다.

확장 프로그램 스크린샷

screenshot

YT Transcript Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 YT Transcript Downloader YT Transcript Downloader
ID liakknlpjigmkploknohgomhgaenjpom
공식 URL https://chromewebstore.google.com/detail/yt-transcript-downloader/liakknlpjigmkploknohgomhgaenjpom
설명 Download transcript of youtube video
파일 크기 11.46 KB
설치 횟수 264
현재 버전 1.0
최근 업데이트 2023-11-30
출시 날짜 2023-09-18
평점 4.00/5 총 3 개의 평점
개발자 Mizan Rifat
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}