Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
Wat is Two Captions for YouTube & Netflix?
Two Captions for YouTube & Netflix is een Chrome-extensie ontwikkeld door Mike Steele, en de belangrijkste functie is "Show subtitles in two languages on Youtube & Netflix".
Extensie Screenshots
Download het CRX-bestand van de extensie Two Captions for YouTube & Netflix
Download Two Captions for YouTube & Netflix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- Targeted at language learners who need what the speaker is saying and the translation in user's native language.
Basisinformatie over de Extensie
Naam | |
ID | lpeonmjfimoijceaalocpgjjchocbiap |
Officiële URL | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
Beschrijving | Show subtitles in two languages on Youtube & Netflix |
Bestandsgrootte | 4.87 MB |
Aantal Installaties | 34,612 |
Huidige Versie | 2.6.1 |
Laatst Bijgewerkt | 2021-02-27 |
Publicatiedatum | 2020-05-26 |
Beoordeling | 3.91/5 Totaal 109 Beoordelingen |
Ontwikkelaar | Mike Steele |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/mikesteele/dual-captions |
Help Pagina-URL | https://github.com/mikesteele/dual-captions |
Ondersteunde Talen | 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 } |