Search for YouTube Player

Add search functionality to the YouTube video player for videos with closed captions

Search for YouTube Player란 무엇입니까?

Search for YouTube Player은(는) jared.schwalbe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add search functionality to the YouTube video player for videos with closed captions"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Ever wanted to ctrl-f (or cmd-f) a YouTube video? Looking for that one clip in a 2 hour podcast? Don't want to listen to that entire lecture your professor posted? Well you're in luck!

If any YouTube video has closed captions enabled, this extension will add a search button to the video player so that you can search the transcript and navigate to each timestamp in the video where your query is spoken. This extension strives to feel as native as possible, as if it were a feature built right into YouTube.

- It will not seek to the exact moment your query is spoken, but instead it seeks to the timestamp where the caption would appear on screen.
- Use ENTER to seek to the next occurrence in the video and the LEFT/RIGHT arrow keys to cycle between previous and next.
- Limited to videos where closed captions are available.
- Limited to youtube.com (will not work on embedded videos).

*** After installing, refresh any tabs that are running YouTube.                    

확장 프로그램 기본 정보

이름 Search for YouTube Player Search for YouTube Player
ID mbhogigjpbknpdogfkenmgijelgjjcod
공식 URL https://chromewebstore.google.com/detail/search-for-youtube-player/mbhogigjpbknpdogfkenmgijelgjjcod
설명 Add search functionality to the YouTube video player for videos with closed captions
파일 크기 99.3 KB
설치 횟수 295
현재 버전 2.0.0
최근 업데이트 2022-04-12
출시 날짜 2017-03-09
평점 4.86/5 총 7 개의 평점
개발자 jared.schwalbe
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/jared-schwalbe/search-for-youtube-player/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search for YouTube Player",
    "version": "2.0.0",
    "description": "Add search functionality to the YouTube video player for videos with closed captions",
    "author": "Jared Schwalbe",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "import-app.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "html\/searchButton.html",
                "html\/searchMenu.html"
            ]
        },
        {
            "resources": [
                "chunks\/*-*.js",
                "app.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}