speak subtitles extension
Reproductor subtítulos cerrados en videos (Actualmente funcional en PluralSight).
speak subtitles extensionคืออะไร?
speak subtitles extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dgzornoza และคุณลักษณะหลักของมันคือ "Reproductor subtítulos cerrados en videos (Actualmente funcional en PluralSight)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย speak subtitles extension
ดาวน์โหลดไฟล์ส่วนขยาย speak subtitles extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Extensión de accesibilidad para reproducir subtítulos de un video mediante síntesis de voz, de modo que se pueda realizar una pseudo traducción en tiempo real de un video. Actualmente funciona en videos de las siguientes fuentes: - https://www.pluralsight.com/ Más fuentes serán añadidas en posteriores actualizaciones según sean demandadas.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | speak subtitles extension |
ID | aofckpjmpjakbifabhikjheakfjlpame |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/speak-subtitles-extension/aofckpjmpjakbifabhikjheakfjlpame |
คำอธิบาย | Reproductor subtítulos cerrados en videos (Actualmente funcional en PluralSight). |
ขนาดไฟล์ | 272 KB |
จำนวนการติดตั้ง | 4,000 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2022-03-09 |
วันที่เผยแพร่ | 2018-03-08 |
คะแนน | 3.78/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | dgzornoza |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "version": "2.0.0", "default_locale": "en", "description": "__MSG_description__", "icons": { "32": "img\/icon-extension-32.png", "48": "img\/icon-extension-48.png", "128": "img\/icon-extension-128.png", "256": "img\/icon-extension-256.png" }, "action": { "default_icon": { "16": "img\/icon-action-16.png", "24": "img\/icon-action-24.png", "32": "img\/icon-action-32.png", "48": "img\/icon-action-48.png", "128": "img\/icon-action-128.png" }, "default_title": "__MSG_page_action_default_title__", "default_popup": "page-action.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.pluralsight.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "run_at": "document_idle" } ], "minimum_chrome_version": "88", "options_page": "page-options.html", "permissions": [ "storage", "tts", "declarativeContent" ] } |