HLS Player - m3u8 Streaming Player

HLS Player - m3u8 HTTP Live Streaming (HLS) Player

HLS Player - m3u8 Streaming Player란 무엇입니까?

HLS Player - m3u8 Streaming Player은(는) https://www.hlsplayer.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HLS Player - m3u8 HTTP Live Streaming (HLS) Player"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

HLS Player - m3u8 Streaming Player 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        web site 
https://www.hlsplayer.org/

HLS Player a chrome extention which implements an HTTP Live Streaming client. 
You can play .m3u8 HTTP Live Streaming (HLS) .
It relies on HTML5 video and MediaSource Extensions for playback.

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

m3u8 플레이어, 스트리밍 플레이어                    

확장 프로그램 기본 정보

이름 HLS Player - m3u8 Streaming Player HLS Player - m3u8 Streaming Player
ID eakdijdofmnclopcffkkgmndadhbjgka
공식 URL https://chromewebstore.google.com/detail/hls-player-m3u8-streaming/eakdijdofmnclopcffkkgmndadhbjgka
설명 HLS Player - m3u8 HTTP Live Streaming (HLS) Player
파일 크기 124 KB
설치 횟수 101,695
현재 버전 2.1.1
최근 업데이트 2020-11-26
출시 날짜 2020-11-25
평점 4.50/5 총 30 개의 평점
개발자 https://www.hlsplayer.org
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://hlsplayer.org/doc/privacy.html
지원되는 언어 en
manifest.json
{
    "manifest_version": 2,
    "name": "HLS Player - m3u8 Streaming Player",
    "description": "HLS Player - m3u8 HTTP Live Streaming (HLS) Player",
    "version": "2.1.1",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/*\/*.m3u8*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.hlsplayer.org https:\/\/*.hlsplayer.org; object-src 'self'",
    "homepage_url": "https:\/\/www.hlsplayer.org\/",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "*.html",
        "*.js",
        "*.css",
        "*.png"
    ],
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "HLS Player - m3u8 HTTP Live Streaming (HLS) Player",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "event.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}