Inline HLS Player

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

Qu'est-ce que Inline HLS Player ?

Inline HLS Player est une extension Chrome développée par Alexey Tsikov, et sa fonction principale est "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Inline HLS Player

Téléchargez les fichiers d'extension Inline HLS Player 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

                        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.                    

Informations de Base sur l'Extension

Nom Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
URL Officiel https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
Description Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Taille du Fichier 7.68 KB
Nombre d'Installations 7,092
Version Actuelle 0.1.1
Dernière Mise à Jour 2017-12-08
Date de Publication 2017-12-08
Évaluation 3.55/5 Total 11 Évaluations
Développeur Alexey Tsikov
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}