Play HLS

Play HLS urls in-browser

Qu'est-ce que Play HLS ?

Play HLS est une extension Chrome développée par play-hls, et sa fonction principale est "Play HLS urls in-browser".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Play HLS

Téléchargez les fichiers d'extension Play HLS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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

Informations de Base sur l'Extension

Nom Play HLS Play HLS
ID hahkjjkedonglpienpfiganogikkkoii
URL Officiel https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii
Description Play HLS urls in-browser
Taille du Fichier 482 KB
Nombre d'Installations 268,870
Version Actuelle 1.7
Dernière Mise à Jour 2022-10-28
Date de Publication 2020-06-03
Évaluation 3.32/5 Total 28 Évaluations
Développeur play-hls
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}