Native MPEG-Dash + HLS Playback

Allow the browser to play HLS (m3u8) or MPEG-Dash (mpd) video urls 'natively'

Native MPEG-Dash + HLS Playback란 무엇입니까?

Native MPEG-Dash + HLS Playback은(는) https://cavar.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow the browser to play HLS (m3u8) or MPEG-Dash (mpd) video urls 'natively'"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Native MPEG-Dash + HLS Playback 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Extension is not for sale or third party ad integration.

Allows HLS and MPEG-DASH native playback in Chrome browser. Click on any m3u8 or mpd link inside Chrome to play it directly in a new tab. By default, the browser downloads any m3u8 and mpd files that were requested. This plugin checks any links to see if they match. If that's the case, it opens a new tab on a video player that uses the hls.js and dashjs library. This extension is just a wrapper for those players on Chrome.
Please read the release notes on install before use.

Report any issues to https://github.com/Palethorn/nas-extension/issues                    

확장 프로그램 기본 정보

이름 Native MPEG-Dash + HLS Playback Native MPEG-Dash + HLS Playback
ID cjfbmleiaobegagekpmlhmaadepdeedn
공식 URL https://chromewebstore.google.com/detail/native-mpeg-dash-+-hls-pl/cjfbmleiaobegagekpmlhmaadepdeedn
설명 Allow the browser to play HLS (m3u8) or MPEG-Dash (mpd) video urls 'natively'
파일 크기 797 KB
설치 횟수 72,907
현재 버전 5.0.5
최근 업데이트 2024-02-16
출시 날짜 2019-07-04
평점 4.38/5 총 47 개의 평점
개발자 https://cavar.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Palethorn/nas-extension
도움말 페이지 URL https://github.com/Palethorn/nas-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Native MPEG-Dash + HLS Playback",
    "version": "5.0.5",
    "description": "Allow the browser to play HLS (m3u8) or MPEG-Dash (mpd) video urls 'natively'",
    "manifest_version": 3,
    "icons": {
        "128": "assets\/icon128.png"
    },
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_title": "Native MPEG-Dash + HLS Playback",
        "default_icon": "assets\/icon128.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/index.html"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "\/release_notes.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}