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
擴展基本資訊
名稱 | Play HLS |
ID | hahkjjkedonglpienpfiganogikkkoii |
官方網址 | 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" ] } |