Play M3u8

Play HLS url in-browser

Cos'è Play M3u8?

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

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Play M3u8

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

Informazioni di Base sull'Estensione

Nome Play M3u8 Play M3u8
ID folmbcaopkfclhmdbolnifkpmkfcmlfe
URL Ufficiale https://chrome.google.com/webstore/detail/play-m3u8/folmbcaopkfclhmdbolnifkpmkfcmlfe
Descrizione Play HLS url in-browser
Dimensione del File 191 KB
Conteggio Installazioni 3,000
Versione Corrente 1.0
Ultimo Aggiornamento 2021-01-31
Data di Pubblicazione 2020-11-01
Valutazione 2.60/5 Totale 5 Valutazioni
Sviluppatore andrexnet
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}