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 |
官方網址 | 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" ] } |