Inline HLS Player

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

Vad är Inline HLS Player?

Inline HLS Player är en Chrome-tillägg utvecklad av Alexey Tsikov, och dess huvudfunktion är "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".

Tilläggsskärmbilder

screenshot

Ladda ner Inline HLS Player-förlängningens CRX-fil

Ladda ner Inline HLS Player-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
Officiell webbadress https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
Beskrivning Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Filstorlek 7.68 KB
Antal Installationer 7,092
Aktuell Version 0.1.1
Senast Uppdaterad 2017-12-08
Publiceringsdatum 2017-12-08
Betyg 3.55/5 Totalt 11 Betyg
Utvecklare Alexey Tsikov
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}