Play HLS M3u8

Play HLS urls in-browser

什麼是Play HLS M3u8?

Play HLS M3u8是由andrexnet開發的Chrome擴展程式,該擴展的主要功能是“Play HLS urls in-browser”。

擴展截圖

screenshot
screenshot
screenshot

下載Play HLS M3u8擴展crx文件

下載Play HLS M3u8擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Extension with an hls.js library from: https://www.jsdelivr.com/package/npm/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 M3u8 Play HLS M3u8
ID ckblfoghkjhaclegefojbgllenffajdc
官方網址 https://chrome.google.com/webstore/detail/play-hls-m3u8/ckblfoghkjhaclegefojbgllenffajdc
簡介 Play HLS urls in-browser
檔案大小 82.86 KB
安裝次數 200,000
目前版本 1.5.1
更新時間 2021-02-04
上架時間 2020-10-26
評分 4.13/5 共 241 次評分
開發者 andrexnet
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "background": {
        "scripts": [
            "event.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Disable"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Play HLS urls in-browser",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Play HLS M3u8",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.5.1",
    "web_accessible_resources": [
        "*.html"
    ]
}