Play M3u8

Play HLS url in-browser

什么是Play M3u8?

Play M3u8是由andrexnet开发的Chrome扩展程序,该扩展的主要功能是“Play HLS url in-browser”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Play M3u8扩展crx文件

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

扩展使用说明

                        Extension with an clappr.js library from: https://github.com/clappr/clappr
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. clappr.js also supports HLS + fmp4.                    

扩展基本信息

名称 Play M3u8 Play M3u8
ID folmbcaopkfclhmdbolnifkpmkfcmlfe
官方URL https://chrome.google.com/webstore/detail/play-m3u8/folmbcaopkfclhmdbolnifkpmkfcmlfe
简介 Play HLS url in-browser
文件大小 191 KB
安装次数 3,000
当前版本 1.0
更新时间 2021-01-31
上架时间 2020-11-01
评分 2.60/5 共5次评分
开发者 andrexnet
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "background": {
        "persistent": true,
        "scripts": [
            "event.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Disable"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Play HLS url in-browser",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Play M3u8",
    "permissions": [
        "*:\/\/*\/*.m3u8*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "web_accessible_resources": [
        "player.html",
        "icon128.png"
    ]
}