Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
Vad är Two Captions for YouTube & Netflix?
Two Captions for YouTube & Netflix är en Chrome-tillägg utvecklad av Mike Steele, och dess huvudfunktion är "Show subtitles in two languages on Youtube & Netflix".
Tilläggsskärmbilder
Ladda ner Two Captions for YouTube & Netflix-förlängningens CRX-fil
Ladda ner Two Captions for YouTube & Netflix-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
- Targeted at language learners who need what the speaker is saying and the translation in user's native language.
Grundläggande Information om Tillägg
Namn | |
ID | lpeonmjfimoijceaalocpgjjchocbiap |
Officiell webbadress | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
Beskrivning | Show subtitles in two languages on Youtube & Netflix |
Filstorlek | 4.87 MB |
Antal Installationer | 34,612 |
Aktuell Version | 2.6.1 |
Senast Uppdaterad | 2021-02-27 |
Publiceringsdatum | 2020-05-26 |
Betyg | 3.91/5 Totalt 109 Betyg |
Utvecklare | Mike Steele |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mikesteele/dual-captions |
Hjälpsida URL | https://github.com/mikesteele/dual-captions |
Stödda Språk | 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 } |