CCaptioner

Assign a text track to a video element in a web page

CCaptioner란 무엇입니까?

CCaptioner은(는) Raymond Hill (gorhill)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Assign a text track to a video element in a web page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A very simple extension which purpose is to assign a text track (.srt or .vtt) to a HTML5 video element in a web page.

Many HTML5 video players do not offer the ability to import text track for captions/subtitles purpose. The purpose of this extension is to remediate this problem.

When you want to assign a text track to a video element in a web page:

- Open the popup menu and click "Assign text track to..."
- Move the mouse over the target video element
  - Click the video element if needed
- A file picker will appear
- Pick the .srt or .vtt file to use as text track

The video should now render the captions/subtitles of the file you selected.

The content scripts of CCaptioner are injected if and only if you click on its toolbar icon while on a specific web site, and only for that web site. Once the text track is embedded, the content script terminates and should be garbage-collected by your browser's JavaScript engine.

Once a text track has been assigned to a video element on a given page, you can time-shift the text track through CCaptioner's popup panel -- this is useful when the text track is not well synchronized with the video content.

## Permissions

### activeTab

This permission means that the extension will be able to interact with a web page only when you click its icon in the toolbar; so CCaptioner's content script is injected only when you demand it by clicking CCaptioner's toolbar icon.

### 

This permission is necessary to ensure CCaptioner's content script can also be injected in embedded iframe elements in a page -- it is not uncommon for video players to be inside an iframe which origin is different from the origin of the root document.                    

확장 프로그램 기본 정보

이름 CCaptioner CCaptioner
ID lckmkmkmghpklkkbfhhfgalajdnjcnbn
공식 URL https://chromewebstore.google.com/detail/ccaptioner/lckmkmkmghpklkkbfhhfgalajdnjcnbn
설명 Assign a text track to a video element in a web page
파일 크기 24.54 KB
설치 횟수 1,445
현재 버전 1.1.0
최근 업데이트 2020-03-03
출시 날짜 2020-03-01
평점 3.20/5 총 15 개의 평점
개발자 Raymond Hill (gorhill)
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/gorhill/uBlock/wiki/Privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Raymond Hill",
    "browser_action": {
        "default_icon": {
            "64": "icon-64.png"
        },
        "default_title": "CCaptioner",
        "default_popup": "popup.html"
    },
    "description": "Assign a text track to a video element in a web page",
    "icons": {
        "64": "icon-64.png"
    },
    "manifest_version": 2,
    "name": "CCaptioner",
    "permissions": [
        "activeTab",
        ""
    ],
    "version": "1.1.0"
}