Dual Subtitles for TED Talks

This extension displays two subtitles at once - a translated subtitle alongside the original transcript.

Dual Subtitles for TED Talks란 무엇입니까?

Dual Subtitles for TED Talks은(는) h13a에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension displays two subtitles at once - a translated subtitle alongside the original transcript."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dual Subtitles for TED Talks 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Learn a language with 4000+ TED Talks to stir your curiosity.  

While using this extension, you'll see translated subtitles for a TED Talk along with the original transcript. It helps you follow the speaker and understand the context more clearly. 

Never want to be left behind by an audience laughing at a joke? Select a language and get started! 

********************
ver 1.3.1: 
🔧 Fixes an issue in setting the default language and font size.

ver 1.3.0: 
✨ Font size adjustment
✨ Improved language selection - only shows the languages available in the currently playing video

ver 1.2.0: 
✨ Introducing full screen mode!

ver 1.1.0: 
🔧 Subtitles are now properly synced when an ad appears prior to the talk video.
********************                    

확장 프로그램 기본 정보

이름 Dual Subtitles for TED Talks Dual Subtitles for TED Talks
ID ccednkoekghkpdkmphmgbjieheeaiajm
공식 URL https://chromewebstore.google.com/detail/dual-subtitles-for-ted-ta/ccednkoekghkpdkmphmgbjieheeaiajm
설명 This extension displays two subtitles at once - a translated subtitle alongside the original transcript.
파일 크기 702 KB
설치 횟수 368
현재 버전 1.3.1
최근 업데이트 2024-01-07
출시 날짜 2022-07-20
평점 4.00/5 총 2 개의 평점
개발자 h13a
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://harukikinoshita.com/chrome-extensions-privacy-policy
지원되는 언어 en,es,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dual Subtitles for TED Talks",
    "description": "This extension displays two subtitles at once - a translated subtitle alongside the original transcript.",
    "version": "1.3.1",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "icon16x16.png",
        "32": "icon32x32.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "contents.js"
            ],
            "css": [
                "interface.css"
            ],
            "matches": [
                "https:\/\/www.ted.com\/talks\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/www.ted.com\/talks\/*",
        "https:\/\/pubads.g.doubleclick.net\/*"
    ]
}