Inline HLS Player
Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Was ist Inline HLS Player?
Inline HLS Player ist eine Chrome-Erweiterung, die von Alexey Tsikov entwickelt wurde, und ihr Hauptmerkmal ist "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".
Erweiterungsscreenshots
Inline HLS Player-Erweiterungs-CRX-Datei herunterladen
Laden Sie Inline HLS Player-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Inline HLS Player |
ID | geecgiclhemdbkmmbflfdophmppjjial |
Offizielle URL | https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial |
Beschreibung | Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/) |
Dateigröße | 7.68 KB |
Installationsanzahl | 7,092 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2017-12-08 |
Veröffentlichungsdatum | 2017-12-08 |
Bewertung | 3.55/5 Insgesamt 11 Bewertungen |
Entwickler | Alexey Tsikov |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |