YouTube Captions Search

It's like 'ctrl + f' (or 'cmd + f'), but for YouTube

YouTube Captions Search란 무엇입니까?

YouTube Captions Search은(는) brennanmho에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It's like 'ctrl + f' (or 'cmd + f'), but for YouTube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        HOW TO USE:

1. Go to any YouTube video that contains captions/subtitles (CC button available).
2. If the extension icon is grayed out, click on the CC button.
3. Click the extension icon to begin searching!

*** REFRESH ALREADY OPEN YOUTUBE PAGES UPON INSTALLATION IF EXTENSION IS NOT ACTIVATING ***

If you found this extension useful, please consider a small donation :).

https://www.paypal.com/paypalme/brennanho                    

확장 프로그램 기본 정보

이름 YouTube Captions Search YouTube Captions Search
ID kimbeggjgnmckoikpckibeoaocafcpbg
공식 URL https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg
설명 It's like 'ctrl + f' (or 'cmd + f'), but for YouTube
파일 크기 23.58 KB
설치 횟수 6,000
현재 버전 2.1.9
최근 업데이트 2020-12-15
출시 날짜 2020-06-07
평점 4.34/5 총 35 개의 평점
개발자 brennanmho
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Captions Search",
    "short_name": "YCS",
    "description": "It's like 'ctrl + f' (or 'cmd + f'), but for YouTube",
    "version": "2.1.9",
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "https:\/\/www.youtube.com\/api\/timedtext?*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": true,
        "run_at": "document_start"
    },
    "browser_action": {
        "default_icon": "images\/video-player.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/youtube-16.png",
        "32": "images\/youtube-32.png",
        "48": "images\/youtube-48.png",
        "128": "images\/youtube-128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+I",
                "chromeos": "Ctrl+Shift+Y",
                "linux": "Ctrl+Shift+Y"
            }
        }
    },
    "web_accessible_resources": [
        "style.css"
    ]
}