Play HLS M3u8

Play HLS urls in-browser

What is Play HLS M3u8?

Play HLS M3u8 is a Chrome extension developed by andrexnet, and its main feature is "Play HLS urls in-browser".

Extension Screenshots

screenshot
screenshot
screenshot

Download Play HLS M3u8 Extension CRX File

Download Play HLS M3u8 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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

Extension Basic Information

Name Play HLS M3u8 Play HLS M3u8
ID ckblfoghkjhaclegefojbgllenffajdc
Official URL https://chrome.google.com/webstore/detail/play-hls-m3u8/ckblfoghkjhaclegefojbgllenffajdc
Description Play HLS urls in-browser
File Size 82.86 KB
Installation Count 200,000
Current Version 1.5.1
Last Updated 2021-02-04
Publish Date 2020-10-26
Rating 4.13/5 Total 241 Ratings
Developer andrexnet
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}