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文件

下载HLS Player - m3u8 Streaming Player扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
                ""
            ]
        }
    ]
}