Play HLS M3u8

Play HLS urls in-browser

Wat is Play HLS M3u8?

Play HLS M3u8 is een Chrome-extensie ontwikkeld door andrexnet, en de belangrijkste functie is "Play HLS urls in-browser".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Play HLS M3u8

Download Play HLS M3u8-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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

Basisinformatie over de Extensie

Naam Play HLS M3u8 Play HLS M3u8
ID ckblfoghkjhaclegefojbgllenffajdc
Officiële URL https://chrome.google.com/webstore/detail/play-hls-m3u8/ckblfoghkjhaclegefojbgllenffajdc
Beschrijving Play HLS urls in-browser
Bestandsgrootte 82.86 KB
Aantal Installaties 200,000
Huidige Versie 1.5.1
Laatst Bijgewerkt 2021-02-04
Publicatiedatum 2020-10-26
Beoordeling 4.13/5 Totaal 241 Beoordelingen
Ontwikkelaar andrexnet
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}