Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
Two Captions for YouTube & Netflix란 무엇입니까?
Two Captions for YouTube & Netflix은(는) Mike Steele에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show subtitles in two languages on Youtube & Netflix"입니다.
확장 프로그램 스크린샷
Two Captions for YouTube & Netflix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- Targeted at language learners who need what the speaker is saying and the translation in user's native language.
확장 프로그램 기본 정보
이름 | |
ID | lpeonmjfimoijceaalocpgjjchocbiap |
공식 URL | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
설명 | Show subtitles in two languages on Youtube & Netflix |
파일 크기 | 4.87 MB |
설치 횟수 | 34,612 |
현재 버전 | 2.6.1 |
최근 업데이트 | 2021-02-27 |
출시 날짜 | 2020-05-26 |
평점 | 3.91/5 총 109 개의 평점 |
개발자 | Mike Steele |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mikesteele/dual-captions |
도움말 페이지 URL | https://github.com/mikesteele/dual-captions |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Two Captions for YouTube & Netflix", "description": "Show subtitles in two languages on Youtube & Netflix", "version": "2.6.1", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "webRequest" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Show two captions", "default_icon": "icon.png", "default_popup": "index.html" }, "content_scripts": [ { "all_frames": false, "js": [ "bundle.js" ], "matches": [ "https:\/\/www.netflix.com\/*", "https:\/\/www.youtube.com\/*", "https:\/\/*.kanopy.com\/*", "https:\/\/www.disneyplus.com\/*" ] } ], "icons": { "16": "icon.png", "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |