Native HLS Playback

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

Native HLS Playback란 무엇입니까?

Native HLS Playback은(는) Gaetan Hervouet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow the browser to play HLS video urls (m3u8) 'natively'"입니다.

확장 프로그램 스크린샷

screenshot

Native HLS Playback 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}