Native HLS Playback

Allow the browser to play HLS video urls (m3u8) 'natively'

Native HLS Playback क्या है?

Native HLS Playback Gaetan Hervouet द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow the browser to play HLS video urls (m3u8) 'natively'"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Native HLS Playback एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension is a wrapper around the awesome hlsjs library: https://github.com/video-dev/hls.js

Clicking on the extension icon will let you play any m3u8 embedded as a video html element in the current page.

New: type m3u8, then tab, then your m3u8 URL to play the URL in the extension.

Features:
Enable/Disable the url catcher by clicking on the icon.
Enable hls.js debug mode in the extension settings.
Switch between hls.js  0.14.x, 1.0.x and 1.1.x in the settings.
Now supports subtitles!
Switch between zoom and native video size in the options.
Display timed metadata in the console


Default player is now hls.js/1.1.5.                    

एक्सटेंशन की मूल जानकारी

नाम Native HLS Playback Native HLS Playback
ID emnphkkblegpebimobpbekeedfgemhof
आधिकारिक URL https://chromewebstore.google.com/detail/native-hls-playback/emnphkkblegpebimobpbekeedfgemhof
विवरण Allow the browser to play HLS video urls (m3u8) 'natively'
फ़ाइल का आकार 1.25 MB
स्थापना संख्या 331,277
वर्तमान संस्करण 1.1.5
अंतिम अपडेट 2022-05-31
प्रकाशन तिथि 2019-04-08
रेटिंग 4.36/5 कुल 241 रेटिंग्स
डेवलपर Gaetan Hervouet
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native HLS Playback",
    "version": "1.1.5",
    "description": "Allow the browser to play HLS video urls (m3u8) 'natively'",
    "manifest_version": 2,
    "icons": {
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "event.js",
            "global.js"
        ]
    },
    "content_security_policy": "script-src 'self' blob:; object-src 'self'",
    "permissions": [
        "tabs",
        "*:\/\/*\/*.m3u8*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_title": "Disable",
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "*.js",
        "*.html"
    ],
    "omnibox": {
        "keyword": "m3u8"
    }
}