Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
Apa itu Two Captions for YouTube & Netflix?
Two Captions for YouTube & Netflix adalah ekstensi Chrome yang dikembangkan oleh Mike Steele, dan fitur utamanya adalah "Show subtitles in two languages on Youtube & Netflix".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Two Captions for YouTube & Netflix
Unduh file ekstensi Two Captions for YouTube & Netflix dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
- Targeted at language learners who need what the speaker is saying and the translation in user's native language.
Informasi Dasar Ekstensi
Nama | |
ID | lpeonmjfimoijceaalocpgjjchocbiap |
URL Resmi | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
Deskripsi | Show subtitles in two languages on Youtube & Netflix |
Ukuran File | 4.87 MB |
Jumlah Instalasi | 34,612 |
Versi Saat Ini | 2.6.1 |
Terakhir Diperbarui | 2021-02-27 |
Tanggal Publikasi | 2020-05-26 |
Penilaian | 3.91/5 Total 109 Penilaian |
Pengembang | Mike Steele |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mikesteele/dual-captions |
URL Halaman Bantuan | https://github.com/mikesteele/dual-captions |
Bahasa yang Didukung | 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 } |