Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
What is Two Captions for YouTube & Netflix?
Two Captions for YouTube & Netflix is a Chrome extension developed by Mike Steele, and its main feature is "Show subtitles in two languages on Youtube & Netflix".
Extension Screenshots
Download Two Captions for YouTube & Netflix Extension CRX File
Download Two Captions for YouTube & Netflix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
- Targeted at language learners who need what the speaker is saying and the translation in user's native language. Extension Basic Information
| Name | |
| ID | lpeonmjfimoijceaalocpgjjchocbiap |
| Official URL | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
| Description | Show subtitles in two languages on Youtube & Netflix |
| File Size | 4.87 MB |
| Installation Count | 34,612 |
| Current Version | 2.6.1 |
| Last Updated | 2021-02-27 |
| Publish Date | 2020-05-26 |
| Rating | 3.91/5 Total 109 Ratings |
| Developer | Mike Steele |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/mikesteele/dual-captions |
| Help Page URL | https://github.com/mikesteele/dual-captions |
| Supported Languages | 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
} | |