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ファイルをダウンロード
Two Captions for YouTube & Netflix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- 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 |
Eメール | [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 } |