Play HLS
Play HLS urls in-browser
Play HLSคืออะไร?
Play HLS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย play-hls และคุณลักษณะหลักของมันคือ "Play HLS urls in-browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play HLS
ดาวน์โหลดไฟล์ส่วนขยาย Play HLS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Play HLS urls in-browser Extension with an hls.js library from: https://github.com/video-dev/hls.js Play the m3u8 links you click on and any m3u8 links you paste into the address bar. It works by transmuxing MPEG-2 Transport Stream and AAC/MP3 streams into ISO BMFF (MP4) fragments. This transmuxing could be performed asynchronously using Web Worker if available in the browser. hls.js also supports HLS + fmp4, as announced during WWDC2016 hls.js does not need any player, it works directly on top of a standard HTML
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Play HLS |
ID | hahkjjkedonglpienpfiganogikkkoii |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii |
คำอธิบาย | Play HLS urls in-browser |
ขนาดไฟล์ | 482 KB |
จำนวนการติดตั้ง | 268,870 |
เวอร์ชันปัจจุบัน | 1.7 |
อัปเดตครั้งล่าสุด | 2022-10-28 |
วันที่เผยแพร่ | 2020-06-03 |
คะแนน | 3.32/5 รวมทั้งหมด 28 คะแนน |
ผู้พัฒนา | play-hls |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "version": "1.7", "background": { "scripts": [ "event.js" ] }, "browser_action": { "default_icon": "icon128.png", "default_title": "Disable" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/*\/*.m3u8*", "*:\/\/*\/*.ts*" ] } ], "description": "Play HLS urls in-browser", "icons": { "128": "icon128.png" }, "manifest_version": 2, "name": "Play HLS", "permissions": [ "*:\/\/*\/*m3u8*", "*:\/\/*\/*.ts*", "webRequest", "webRequestBlocking" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ "*.html" ] } |