Echo360 Closed Captions
Add closed captions to Echo360 lectures!
Echo360 Closed Captionsคืออะไร?
Echo360 Closed Captions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yiheinbuilds และคุณลักษณะหลักของมันคือ "Add closed captions to Echo360 lectures!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Echo360 Closed Captions
ดาวน์โหลดไฟล์ส่วนขยาย Echo360 Closed Captions ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Many students found it difficult to watch the lecture while having to look at the side for the transcript. Closed captions solves this problem. iOS/iPad OS version: apps.apple.com/gb/app/closed-captions-for-lectures/id1613159619 Features: - Adds closed captions / subtitles to lecture - Fixes content overflow bug: scrollbar appears on smaller screens - transcript panel now dynamically sizes based on size of window FEEDBACK AND SUGGESTIONS: https://yi-hein-builds.canny.io/ Changelog: version 1.1: Add close captions to lectures version 1.2: Enable dynamic transcript panel, fixes content overscroll bug version 1.3: Fixes bug where video speed controller malfunctions version 1.4 (9/4/2022) : Fixes bug where captions are off center, fixes vertical overflow bug version 1.5 (10/4/2022): Added support for us, ca, au versions of echo360, Fixed speed buttons stopped working after v1.4 changes version 1.6 (26/12/2022): Add URL support for .net domains
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Echo360 Closed Captions |
ID | omfchijmjhcnlgpiihgagngdcfilppik |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/echo360-closed-captions/omfchijmjhcnlgpiihgagngdcfilppik |
คำอธิบาย | Add closed captions to Echo360 lectures! |
ขนาดไฟล์ | 16.56 KB |
จำนวนการติดตั้ง | 336 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2022-12-27 |
วันที่เผยแพร่ | 2022-02-18 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | yiheinbuilds |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Echo360 Closed Captions", "description": "Add closed captions to Echo360 lectures!", "version": "1.6", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/echo360.org\/lesson\/*", "https:\/\/echo360.org.uk\/lesson\/*", "https:\/\/echo360.org.au\/lesson\/*", "https:\/\/echo360.org.ca\/lesson\/*", "https:\/\/echo360.net\/lesson\/*", "https:\/\/echo360.net.uk\/lesson\/*", "https:\/\/echo360.net.au\/lesson\/*", "https:\/\/echo360.net.ca\/lesson\/*" ], "css": [ "my-styles.css" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting" ], "action": { "default_icon": { "16": "\/images\/closed_caption16.png", "32": "\/images\/closed_caption32.png", "48": "\/images\/closed_caption48.png", "128": "\/images\/closed_caption128.png" } }, "icons": { "16": "\/images\/closed_caption16.png", "32": "\/images\/closed_caption32.png", "48": "\/images\/closed_caption48.png", "128": "\/images\/closed_caption128.png" } } |