Play HLS
Play HLS urls in-browser
什么是Play HLS?
Play HLS是由play-hls开发的Chrome扩展程序,该扩展的主要功能是“Play HLS urls in-browser”。
扩展截图
下载Play HLS扩展crx文件
下载Play HLS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Play HLS urls in-browser
Extension with an hls.js library from: https://github.com/video-dev/hls.js
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. hls.js also supports HLS + fmp4, as announced during WWDC2016
hls.js does not need any player, it works directly on top of a standard HTML 扩展基本信息
| 名称 | |
| ID | hahkjjkedonglpienpfiganogikkkoii |
| 官方URL | https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii |
| 简介 | Play HLS urls in-browser |
| 文件大小 | 482 KB |
| 安装次数 | 268,870 |
| 当前版本 | 1.7 |
| 更新时间 | 2022-10-28 |
| 上架时间 | 2020-06-03 |
| 评分 | 3.32/5 共28次评分 |
| 开发者 | play-hls |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"version": "1.7",
"background": {
"scripts": [
"event.js"
]
},
"browser_action": {
"default_icon": "icon128.png",
"default_title": "Disable"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*:\/\/*\/*.m3u8*",
"*:\/\/*\/*.ts*"
]
}
],
"description": "Play HLS urls in-browser",
"icons": {
"128": "icon128.png"
},
"manifest_version": 2,
"name": "Play HLS",
"permissions": [
"*:\/\/*\/*m3u8*",
"*:\/\/*\/*.ts*",
"webRequest",
"webRequestBlocking"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"web_accessible_resources": [
"*.html"
]
} | |