Inline HLS Player

Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)

Inline HLS Playerคืออะไร?

Inline HLS Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexey Tsikov และคุณลักษณะหลักของมันคือ "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)"

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

screenshot

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

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

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

                        This extension allows to watch HLS videos (designed for mobile phones) right inside desktop browser. Hls.js library is used to support playback.
No need to open video urls in separate tab or window. Inline HLS Player will detect if video tryes to load HLS and will handle it.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
คำอธิบาย Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
ขนาดไฟล์ 7.68 KB
จำนวนการติดตั้ง 7,092
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2017-12-08
วันที่เผยแพร่ 2017-12-08
คะแนน 3.55/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Alexey Tsikov
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inline HLS Player",
    "short_name": "Inline HLS",
    "description": "Extension allows browser to play HLS videos inside webpage using hls.js library (https:\/\/github.com\/video-dev\/hls.js\/)",
    "version": "0.1.1",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "detectHlsVideo.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "injectHlsJs.js"
    ]
}