Play HLS M3u8

Play HLS urls in-browser

Play HLS M3u8คืออะไร?

Play HLS M3u8 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andrexnet และคุณลักษณะหลักของมันคือ "Play HLS urls in-browser"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play HLS M3u8

ดาวน์โหลดไฟล์ส่วนขยาย Play HLS M3u8 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Extension with an hls.js library from: https://www.jsdelivr.com/package/npm/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 M3u8 Play HLS M3u8
ID ckblfoghkjhaclegefojbgllenffajdc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/play-hls-m3u8/ckblfoghkjhaclegefojbgllenffajdc
คำอธิบาย Play HLS urls in-browser
ขนาดไฟล์ 82.86 KB
จำนวนการติดตั้ง 200,000
เวอร์ชันปัจจุบัน 1.5.1
อัปเดตครั้งล่าสุด 2021-02-04
วันที่เผยแพร่ 2020-10-26
คะแนน 4.13/5 รวมทั้งหมด 241 คะแนน
ผู้พัฒนา andrexnet
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "background": {
        "scripts": [
            "event.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Disable"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Play HLS urls in-browser",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Play HLS M3u8",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.5.1",
    "web_accessible_resources": [
        "*.html"
    ]
}