HLS Player - m3u8 Streaming Player

HLS Player - m3u8 HTTP Live Streaming (HLS) Player

Co je HLS Player - m3u8 Streaming Player?

HLS Player - m3u8 Streaming Player je rozšíření Chrome vyvinuté https://www.hlsplayer.org, a jeho hlavní funkcí je „HLS Player - m3u8 HTTP Live Streaming (HLS) Player“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření HLS Player - m3u8 Streaming Player

Stáhněte si soubory rozšíření HLS Player - m3u8 Streaming Player ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 플레이어, 스트리밍 플레이어                    

Základní Informace o Rozšíření

Název HLS Player - m3u8 Streaming Player HLS Player - m3u8 Streaming Player
ID eakdijdofmnclopcffkkgmndadhbjgka
Oficiální URL https://chromewebstore.google.com/detail/hls-player-m3u8-streaming/eakdijdofmnclopcffkkgmndadhbjgka
Popis HLS Player - m3u8 HTTP Live Streaming (HLS) Player
Velikost souboru 124 KB
Počet instalací 101,695
Aktuální Verze 2.1.1
Poslední Aktualizace 2020-11-26
Datum Vydání 2020-11-25
Hodnocení 4.50/5 Celkem 30 Hodnocení
Vývojář https://www.hlsplayer.org
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://hlsplayer.org/doc/privacy.html
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}