Play HLS
Play HLS urls in-browser
Play HLS क्या है?
Play HLS play-hls द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Play HLS urls in-browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Play HLS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Play HLS urls in-browser Extension with an hls.js library from: https://github.com/video-dev/hls.js Play the m3u8 links you click on and any m3u8 links you paste into the address bar. It works by transmuxing MPEG-2 Transport Stream and AAC/MP3 streams into ISO BMFF (MP4) fragments. This transmuxing could be performed asynchronously using Web Worker if available in the browser. hls.js also supports HLS + fmp4, as announced during WWDC2016 hls.js does not need any player, it works directly on top of a standard HTML
एक्सटेंशन की मूल जानकारी
नाम | Play HLS |
ID | hahkjjkedonglpienpfiganogikkkoii |
आधिकारिक URL | https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii |
विवरण | Play HLS urls in-browser |
फ़ाइल का आकार | 482 KB |
स्थापना संख्या | 268,870 |
वर्तमान संस्करण | 1.7 |
अंतिम अपडेट | 2022-10-28 |
प्रकाशन तिथि | 2020-06-03 |
रेटिंग | 3.32/5 कुल 28 रेटिंग्स |
डेवलपर | play-hls |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "version": "1.7", "background": { "scripts": [ "event.js" ] }, "browser_action": { "default_icon": "icon128.png", "default_title": "Disable" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/*\/*.m3u8*", "*:\/\/*\/*.ts*" ] } ], "description": "Play HLS urls in-browser", "icons": { "128": "icon128.png" }, "manifest_version": 2, "name": "Play HLS", "permissions": [ "*:\/\/*\/*m3u8*", "*:\/\/*\/*.ts*", "webRequest", "webRequestBlocking" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ "*.html" ] } |