Inline HLS Player
Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Inline HLS Player क्या है?
Inline HLS Player Alexey Tsikov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Inline HLS Player एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Inline HLS Player |
ID | geecgiclhemdbkmmbflfdophmppjjial |
आधिकारिक URL | https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial |
विवरण | Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/) |
फ़ाइल का आकार | 7.68 KB |
स्थापना संख्या | 7,092 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2017-12-08 |
प्रकाशन तिथि | 2017-12-08 |
रेटिंग | 3.55/5 कुल 11 रेटिंग्स |
डेवलपर | Alexey Tsikov |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |