Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
Was ist Two Captions for YouTube & Netflix?
Two Captions for YouTube & Netflix ist eine Chrome-Erweiterung, die von Mike Steele entwickelt wurde, und ihr Hauptmerkmal ist "Show subtitles in two languages on Youtube & Netflix".
Erweiterungsscreenshots
Two Captions for YouTube & Netflix-Erweiterungs-CRX-Datei herunterladen
Laden Sie Two Captions for YouTube & Netflix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
- Targeted at language learners who need what the speaker is saying and the translation in user's native language.
Grundlegende Informationen zur Erweiterung
Name | |
ID | lpeonmjfimoijceaalocpgjjchocbiap |
Offizielle URL | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
Beschreibung | Show subtitles in two languages on Youtube & Netflix |
Dateigröße | 4.87 MB |
Installationsanzahl | 34,612 |
Aktuelle Version | 2.6.1 |
Letztes Update | 2021-02-27 |
Veröffentlichungsdatum | 2020-05-26 |
Bewertung | 3.91/5 Insgesamt 109 Bewertungen |
Entwickler | Mike Steele |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mikesteele/dual-captions |
Hilfeseite URL | https://github.com/mikesteele/dual-captions |
Unterstützte Sprachen | 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 } |