Inline HLS Player
Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
什么是Inline HLS Player?
Inline HLS Player是由Alexey Tsikov开发的Chrome扩展程序,该扩展的主要功能是“Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)”。
扩展截图
下载Inline HLS Player扩展crx文件
下载Inline HLS Player扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows to watch HLS videos (designed for mobile phones) right inside desktop browser. Hls.js library is used to support playback. No need to open video urls in separate tab or window. Inline HLS Player will detect if video tryes to load HLS and will handle it.
扩展基本信息
名称 | Inline HLS Player |
ID | geecgiclhemdbkmmbflfdophmppjjial |
官方URL | https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial |
简介 | Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/) |
文件大小 | 7.68 KB |
安装次数 | 7,092 |
当前版本 | 0.1.1 |
更新时间 | 2017-12-08 |
上架时间 | 2017-12-08 |
评分 | 3.55/5 共11次评分 |
开发者 | Alexey Tsikov |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inline HLS Player", "short_name": "Inline HLS", "description": "Extension allows browser to play HLS videos inside webpage using hls.js library (https:\/\/github.com\/video-dev\/hls.js\/)", "version": "0.1.1", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "detectHlsVideo.js" ], "all_frames": true } ], "web_accessible_resources": [ "injectHlsJs.js" ] } |