Inline HLS Player

Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)

¿Qué es Inline HLS Player?

Inline HLS Player es una extensión de Chrome desarrollada por Alexey Tsikov, y su función principal es "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Inline HLS Player

Descarga archivos de extensión Inline HLS Player en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension allows to watch HLS videos (designed for mobile phones) right inside desktop browser. Hls.js library is used to support playback.
No need to open video urls in separate tab or window. Inline HLS Player will detect if video tryes to load HLS and will handle it.                    

Información Básica de la Extensión

Nombre Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
URL Oficial https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
Descripción Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Tamaño del Archivo 7.68 KB
Cantidad de Instalaciones 7,092
Versión Actual 0.1.1
Última Actualización 2017-12-08
Fecha de Publicación 2017-12-08
Calificación 3.55/5 Total de 11 Calificaciones
Desarrollador Alexey Tsikov
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inline HLS Player",
    "short_name": "Inline HLS",
    "description": "Extension allows browser to play HLS videos inside webpage using hls.js library (https:\/\/github.com\/video-dev\/hls.js\/)",
    "version": "0.1.1",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "detectHlsVideo.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "injectHlsJs.js"
    ]
}