Video Captions

Video Captions

Video Captions란 무엇입니까?

Video Captions은(는) codeacwars에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Video Captions"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        As we all know, Youtube supports extended subtitles. Both the creator of the video and our ordinary viewers can create and add subtitles to the video (requires the creator's permission), so this allows many popular videos to have multilingual subtitles. Video Captions is an extension that allows the Video player to display subtitles in two languages at the same time. This plugin is very convenient for many users who like to watch videos on YouTube! Just like many American dramas where subtitles have suppressed subtitles, display double subtitles directly in your favorite videos.

######## Supported Websites ########

* YouTube


########## Bugs ##########

Please DON'T report bugs by a review, Through HERE:
- [email protected]                    

확장 프로그램 기본 정보

이름 Video Captions Video Captions
ID acdlhldnonjkjomgdieacckbdcmjbpdo
공식 URL https://chromewebstore.google.com/detail/video-captions/acdlhldnonjkjomgdieacckbdcmjbpdo
설명 Video Captions
파일 크기 12.03 KB
설치 횟수 149
현재 버전 0.0.3
최근 업데이트 2020-10-12
출시 날짜 2020-10-05
개발자 codeacwars
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Captions",
    "manifest_version": 2,
    "version": "0.0.3",
    "description": "Video Captions",
    "author": "ACWars",
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "images\/tab-icon.png"
    },
    "browser_action": {
        "default_title": "Video captions"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/youtube\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/youtube\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/youtube\/injected.js",
        "js\/youtube\/xhook.min.js"
    ]
}