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 |
Eメール | [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" ] } |