YouTube Transcript Search

Download YT transcripts and search through all at once to find timestamps

YouTube Transcript Search란 무엇입니까?

YouTube Transcript Search은(는) Andre Bradshaw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download YT transcripts and search through all at once to find timestamps"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YouTube Transcript Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Version 1.16 update (1 July 2023)
    1) Fixed issue with downloading videos and livestream transcripts
    2) Added donation link

Version 1.15 update (4 Nov 2022)
    1) Added ability to download/search from within live videos tab or a specific playlist.

Version 1.14 update (29 Oct 2022)
    1) Fixed issue with video extraction caused by the recent change to the user interface on YouTube. Current version bypasses the need for scrolling within a channel's videos page, but not within search results.

Version 1.13 update
    1) fixed some minor duplication issue. 
    2) fixed issue where uploaded files were not cleared out upon new uploads and the duplication of the search button.

 Version 1.12 Update
  1) fixed issue where the initial transcript download did not keep the full list in memory if it exceeded 300mb. This issue made it so users had to reupload the transcripts which is mentioned at 8:58 in the demo video.
  2) cleaned up the UI a bit. Removed some non-functional components. 
  3) added the ability to loop through search results and search those transcripts.

This tool allows a user to search YouTube transcripts at scale. Running the tool on a channel's video tab will loop through the videos and extract the transcripts. Once the transcripts are loaded, a user can search through the transcripts to identify the timestamp associated with the match.
Transcripts are downloaded as JSON files for later use. The max file size is about 300MB, so it may download multiple files and you will need to allow YouTube to allow multiple files. 
Previously downloaded transcripts can be uploaded to save time for future searches.
Due to the size of files, the tool may hang up if you are uploading multiple transcript files. Just wait for the page to finish what it is doing. Do not click around as it will only cause more delays.

The search can look for words near other words by using the tilde symbol, e.g., word~other stuff
Double quotes create a word boundary. The default searches within 29 characters. You can adjust that by adding a custom number variance, e.g., word~245 other stuff
No quotes assumes a wildcard on either side of the word. OR statements are allowed, e.g., (this OR that OR the other thing).
Spaces are converted to 0-3 of any character, so "web store" would match "webstore" or "webed store".

If you search for something really simple like, "the," you are going to have a bad time.
Once the search is complete, you can download the results as a TSV (tab separated values) file which can be opened in google sheets or excel. To open in Excel, you will need to open a blank workbook and then open the file from the file menu. Be sure to change the file format to "all files" and select "tab separated."                    

확장 프로그램 기본 정보

이름 YouTube Transcript Search YouTube Transcript Search
ID eeebipnojmgobognppffkenhdoidendi
공식 URL https://chromewebstore.google.com/detail/youtube-transcript-search/eeebipnojmgobognppffkenhdoidendi
설명 Download YT transcripts and search through all at once to find timestamps
파일 크기 48.05 KB
설치 횟수 2,077
현재 버전 1.16
최근 업데이트 2023-07-03
출시 날짜 2022-07-19
평점 3.62/5 총 29 개의 평점
개발자 Andre Bradshaw
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Transcript Search",
    "version": "1.16",
    "description": "Download YT transcripts and search through all at once to find timestamps",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtu.be\/*"
            ],
            "css": [],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}