CapTube (Dual Captions for YouTube)
Dual subtitles with AI-enabled translations
CapTube (Dual Captions for YouTube)란 무엇입니까?
CapTube (Dual Captions for YouTube)은(는) Dan Chen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dual subtitles with AI-enabled translations"입니다.
확장 프로그램 스크린샷
CapTube (Dual Captions for YouTube) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Dual captions for YouTube || YouTube 雙語字幕 • 整合騰訊翻譯 (Support Tencent Translation) • 整合 DeepL 翻譯 (Support DeepL Translation) 未來改版預計提供更彈性設定(語言、顏色、…) Rich options (flexible languages, color, background, etc) is on the way... ---------------- 本套件為開源專案 (Open Source on GitHub) https://github.com/dannvix/CapTube ---------------- 使用第三方翻譯服務(如騰訊及 DeepL)需自行申請 API Keys API keys required for third-party translations (Tencent, DeepL, etc)
확장 프로그램 기본 정보
이름 | CapTube (Dual Captions for YouTube) |
ID | hbhkmnepjaoiamapfdbhpkjendeeegbb |
공식 URL | https://chromewebstore.google.com/detail/captube-dual-captions-for/hbhkmnepjaoiamapfdbhpkjendeeegbb |
설명 | Dual subtitles with AI-enabled translations |
파일 크기 | 70.8 KB |
설치 횟수 | 1,545 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2020-05-13 |
출시 날짜 | 2020-05-12 |
평점 | 3.57/5 총 14 개의 평점 |
개발자 | Dan Chen |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dannvix/CapTube |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "captube", "description": "Dual subtitles with AI-enabled translations", "version": "1.2.3", "name": "CapTube (Dual Captions for YouTube)", "manifest_version": 2, "author": "Dan Chen", "permissions": [ "storage", "https:\/\/www.youtube.com\/*", "https:\/\/tmt.tencentcloudapi.com\/*", "https:\/\/api.deepl.com\/*" ], "background": { "scripts": [ "background.min.js" ] }, "browser_action": { "default_icon": "icon-gray.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png", "512": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.min.js" ], "run_at": "document_end" } ], "externally_connectable": { "matches": [ "https:\/\/www.youtube.com\/*" ] }, "web_accessible_resources": [ "captube.min.js", "icon32.png" ], "options_ui": { "chrome_style": true, "page": "options.html" } } |