closed caption - dual subtitle viewer

Extension for viewing another language subtitles and existing subtitles together

closed caption - dual subtitle viewer란 무엇입니까?

closed caption - dual subtitle viewer은(는) Takhyun Kim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for viewing another language subtitles and existing subtitles together"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

closed caption - dual subtitle viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Watch subtitles in your preferred language alongside existing subtitles with just one click!

🚀 Supported sites
- netflix
- youtube
- udemy
- ted
- etc...

⭐️ Supported features
- Support for dual closed captions
- change the closed captions size
- Supports a lot of language

If you have any sites you'd like to see added, or any other questions, please contact us at [email protected]                    

확장 프로그램 기본 정보

이름 closed caption - dual subtitle viewer closed caption - dual subtitle viewer
ID pjfhdffkbjfneojiamjnooaagomkimde
공식 URL https://chromewebstore.google.com/detail/closed-caption-dual-subti/pjfhdffkbjfneojiamjnooaagomkimde
설명 Extension for viewing another language subtitles and existing subtitles together
파일 크기 58.99 KB
설치 횟수 895
현재 버전 2.8.0
최근 업데이트 2024-01-04
출시 날짜 2022-10-19
평점 4.50/5 총 2 개의 평점
개발자 Takhyun Kim
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/TakhyunKim/closed-caption-extension
개인정보 보호 정책 페이지 URL https://takhyunkim.notion.site/Privacy-Policy-8bd4aed00ac3404aa107e91165965ebd?pvs=4
지원되는 언어 de,en,fil,fr,vi,tr,ca,da,es,pl,fi,cs,el,bg,uk,th,ar,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "manifest_version": 3,
    "version": "2.8.0",
    "description": "__MSG_description__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "commands"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/kitty-16.png",
            "32": "assets\/kitty-32.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            }
        },
        "active-translate": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle translate"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/frontendmasters.com\/*",
                "*:\/\/www.udemy.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/epicreact.dev\/*",
                "*:\/\/www.ted.com\/*",
                "*:\/\/www.netflix.com\/*",
                "*:\/\/threejs-journey.com\/*",
                "*:\/\/start.ru\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/kitty-16.png",
        "32": "assets\/kitty-32.png",
        "48": "assets\/kitty-48.png",
        "128": "assets\/kitty-128.png"
    }
}