YouTube Caption Checker

Show if there are captions for the language you want in YouTube videos.

YouTube Caption Checker란 무엇입니까?

YouTube Caption Checker은(는) 2jun0에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show if there are captions for the language you want in YouTube videos."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Caption Checker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension add a caption tag for the language you want on the video thumbnail in the YouTube. (But if there are no caption, it doesn't add tags)                    

확장 프로그램 기본 정보

이름 YouTube Caption Checker YouTube Caption Checker
ID onmelgncdnoihoaopmkcacadlmjmcehd
공식 URL https://chromewebstore.google.com/detail/youtube-caption-checker/onmelgncdnoihoaopmkcacadlmjmcehd
설명 Show if there are captions for the language you want in YouTube videos.
파일 크기 60.18 KB
설치 횟수 131
현재 버전 1.5.8
최근 업데이트 2023-02-22
출시 날짜 2021-10-19
평점 5.00/5 총 1 개의 평점
개발자 2jun0
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/2jun0/yt-caption-checker
지원되는 언어 en,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "yt-caption-checker",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "manifest_version": 3,
    "version": "1.5.8",
    "author": "2jun0",
    "homepage_url": "https:\/\/github.com\/2jun0\/yt-caption-checker",
    "icons": {
        "32": "asset\/logo\/logo-big-32.png",
        "64": "asset\/logo\/logo-big-64.png",
        "128": "asset\/logo\/logo-big-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Options",
        "default_popup": "html\/popup.html",
        "default_icon": "asset\/logo\/logo-little.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content_script_loader.js"
            ],
            "css": [
                "css\/content_script.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "minimum_chrome_version": "92"
}