Play HLS M3u8

Play HLS urls in-browser

Cos'è Play HLS M3u8?

Play HLS M3u8 è un'estensione di Chrome sviluppata da andrexnet, e la sua funzione principale è "Play HLS urls in-browser".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Play HLS M3u8

Scarica i file di estensione Play HLS M3u8 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

                        Extension with an hls.js library from: https://www.jsdelivr.com/package/npm/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 Play HLS M3u8 Play HLS M3u8
ID ckblfoghkjhaclegefojbgllenffajdc
URL Ufficiale https://chrome.google.com/webstore/detail/play-hls-m3u8/ckblfoghkjhaclegefojbgllenffajdc
Descrizione Play HLS urls in-browser
Dimensione del File 82.86 KB
Conteggio Installazioni 200,000
Versione Corrente 1.5.1
Ultimo Aggiornamento 2021-02-04
Data di Pubblicazione 2020-10-26
Valutazione 4.13/5 Totale 241 Valutazioni
Sviluppatore andrexnet
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "background": {
        "scripts": [
            "event.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Disable"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Play HLS urls in-browser",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Play HLS M3u8",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.5.1",
    "web_accessible_resources": [
        "*.html"
    ]
}