Inline HLS Player

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

Co to jest Inline HLS Player?

Inline HLS Player to rozszerzenie Chrome opracowane przez Alexey Tsikov, a jego główną funkcją jest „Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Inline HLS Player

Pobierz pliki rozszerzeń Inline HLS Player w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
Oficjalny URL https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
Opis Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Rozmiar pliku 7.68 KB
Liczba instalacji 7,092
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2017-12-08
Data Publikacji 2017-12-08
Ocena 3.55/5 Łącznie 11 Oceny
Deweloper Alexey Tsikov
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}