Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
ما هو Two Captions for YouTube & Netflix؟
Two Captions for YouTube & Netflix هو إضافة Chrome تم تطويرها بواسطة Mike Steele، والميزة الرئيسية لها هي "Show subtitles in two languages on Youtube & Netflix".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Two Captions for YouTube & Netflix
قم بتنزيل ملفات الامتداد Two Captions for YouTube & Netflix بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
- Targeted at language learners who need what the speaker is saying and the translation in user's native language.
معلومات أساسية عن التمديد
الاسم | |
ID | lpeonmjfimoijceaalocpgjjchocbiap |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap |
الوصف | Show subtitles in two languages on Youtube & Netflix |
حجم الملف | 4.87 MB |
عدد التثبيتات | 34,612 |
النسخة الحالية | 2.6.1 |
آخر تحديث | 2021-02-27 |
تاريخ النشر | 2020-05-26 |
تقييم | 3.91/5 مجموع تقييمات 109 |
المطور | Mike Steele |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/mikesteele/dual-captions |
عنوان صفحة المساعدة | https://github.com/mikesteele/dual-captions |
اللغات المدعومة | 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 } |