Inline HLS Player

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

Wat is Inline HLS Player?

Inline HLS Player is een Chrome-extensie ontwikkeld door Alexey Tsikov, en de belangrijkste functie is "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Inline HLS Player

Download Inline HLS Player-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

                        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.                    

Basisinformatie over de Extensie

Naam Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
Officiële URL https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
Beschrijving Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Bestandsgrootte 7.68 KB
Aantal Installaties 7,092
Huidige Versie 0.1.1
Laatst Bijgewerkt 2017-12-08
Publicatiedatum 2017-12-08
Beoordeling 3.55/5 Totaal 11 Beoordelingen
Ontwikkelaar Alexey Tsikov
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}