Play HLS M3u8

Play HLS urls in-browser

Apa itu Play HLS M3u8?

Play HLS M3u8 adalah ekstensi Chrome yang dikembangkan oleh andrexnet, dan fitur utamanya adalah "Play HLS urls in-browser".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Play HLS M3u8

Unduh file ekstensi Play HLS M3u8 dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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

Informasi Dasar Ekstensi

Nama Play HLS M3u8 Play HLS M3u8
ID ckblfoghkjhaclegefojbgllenffajdc
URL Resmi https://chrome.google.com/webstore/detail/play-hls-m3u8/ckblfoghkjhaclegefojbgllenffajdc
Deskripsi Play HLS urls in-browser
Ukuran File 82.86 KB
Jumlah Instalasi 200,000
Versi Saat Ini 1.5.1
Terakhir Diperbarui 2021-02-04
Tanggal Publikasi 2020-10-26
Penilaian 4.13/5 Total 241 Penilaian
Pengembang andrexnet
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}