Play HLS
Play HLS urls in-browser
Cos'è Play HLS?
Play HLS è un'estensione di Chrome sviluppata da play-hls, e la sua funzione principale è "Play HLS urls in-browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Play HLS
Scarica i file di estensione Play HLS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | hahkjjkedonglpienpfiganogikkkoii |
| URL Ufficiale | https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii |
| Descrizione | Play HLS urls in-browser |
| Dimensione del File | 482 KB |
| Conteggio Installazioni | 268,870 |
| Versione Corrente | 1.7 |
| Ultimo Aggiornamento | 2022-10-28 |
| Data di Pubblicazione | 2020-06-03 |
| Valutazione | 3.32/5 Totale 28 Valutazioni |
| Sviluppatore | play-hls |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |