USYD Echo360 Loader
Chrome extension to load USYD Echo360 videos without Flash
USYD Echo360 Loaderคืออะไร?
USYD Echo360 Loader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sidney Alcantara และคุณลักษณะหลักของมันคือ "Chrome extension to load USYD Echo360 videos without Flash"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย USYD Echo360 Loader
ดาวน์โหลดไฟล์ส่วนขยาย USYD Echo360 Loader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Update: USYD has updated Echo360 and no longer uses Flash, so this extension is no longer required. It will remain published with a link to the source code. Loads USYD Echo360 videos without Flash using the native player. Includes playback speed controls, thumbnail seeking, and instructions to download the video using ffmpeg. This extension’s source code is available at https://github.com/notseenee/echo360loader if you want to extend it to your university’s Echo360 system.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | USYD Echo360 Loader |
ID | hekcgkbebmbmbclcgikaocemhaeafpbf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/usyd-echo360-loader/hekcgkbebmbmbclcgikaocemhaeafpbf |
คำอธิบาย | Chrome extension to load USYD Echo360 videos without Flash |
ขนาดไฟล์ | 187 KB |
จำนวนการติดตั้ง | 313 |
เวอร์ชันปัจจุบัน | 1.3.3 |
อัปเดตครั้งล่าสุด | 2019-06-25 |
วันที่เผยแพร่ | 2019-06-23 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Sidney Alcantara |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/notseenee/echo360loader |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "USYD Echo360 Loader", "version": "1.3.3", "description": "Chrome extension to load USYD Echo360 videos without Flash", "author": "Sidney Alcantara", "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "icon\/icon16.png", "24": "icon\/icon24.png", "32": "icon\/icon32.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/view.streaming.sydney.edu.au\/*" ], "js": [ "redirect.js" ], "run_at": "document_idle" }, { "matches": [ "http:\/\/delivery.streaming.sydney.edu.au\/*\/echo_ipad.htm*" ], "js": [ "preventRedirect.js", "echo360.js", "hls.js", "contentScript.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "permissions": [ "declarativeContent" ], "manifest_version": 2 } |