Play M3u8
Play HLS url in-browser
Play M3u8とは何ですか?
Play M3u8はandrexnetによって開発されたChromeの拡張機能で、その主な機能は「Play HLS url in-browser」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" ] } |