Play HLS

Play HLS urls in-browser

O que é Play HLS?

Play HLS é uma extensão do Chrome desenvolvida por play-hls, e sua principal característica é "Play HLS urls in-browser".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Play HLS

Baixe arquivos de extensão Play HLS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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

Informações Básicas da Extensão

Nome Play HLS Play HLS
ID hahkjjkedonglpienpfiganogikkkoii
URL Oficial https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii
Descrição Play HLS urls in-browser
Tamanho do Arquivo 482 KB
Contagem de Instalações 268,870
Versão Atual 1.7
Última Atualização 2022-10-28
Data de Publicação 2020-06-03
Classificação 3.32/5 Total de 28 Avaliações
Desenvolvedor play-hls
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}