Inline HLS Player
Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Co je Inline HLS Player?
Inline HLS Player je rozšíření Chrome vyvinuté Alexey Tsikov, a jeho hlavní funkcí je „Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Inline HLS Player
Stáhněte si soubory rozšíření Inline HLS Player ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Inline HLS Player |
ID | geecgiclhemdbkmmbflfdophmppjjial |
Oficiální URL | https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial |
Popis | Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/) |
Velikost souboru | 7.68 KB |
Počet instalací | 7,092 |
Aktuální Verze | 0.1.1 |
Poslední Aktualizace | 2017-12-08 |
Datum Vydání | 2017-12-08 |
Hodnocení | 3.55/5 Celkem 11 Hodnocení |
Vývojář | Alexey Tsikov |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |