Play HLS

Play HLS urls in-browser

ما هو Play HLS؟

Play HLS هو إضافة Chrome تم تطويرها بواسطة play-hls، والميزة الرئيسية لها هي "Play HLS urls in-browser".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Play HLS

قم بتنزيل ملفات الامتداد Play HLS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Play HLS urls in-browser
Extension with an hls.js library from: https://github.com/video-dev/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 Play HLS
ID hahkjjkedonglpienpfiganogikkkoii
عنوان URL الرسمي https://chromewebstore.google.com/detail/play-hls/hahkjjkedonglpienpfiganogikkkoii
الوصف Play HLS urls in-browser
حجم الملف 482 KB
عدد التثبيتات 268,870
النسخة الحالية 1.7
آخر تحديث 2022-10-28
تاريخ النشر 2020-06-03
تقييم 3.32/5 مجموع تقييمات 28
المطور play-hls
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "version": "1.7",
    "background": {
        "scripts": [
            "event.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Disable"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*.m3u8*",
                "*:\/\/*\/*.ts*"
            ]
        }
    ],
    "description": "Play HLS urls in-browser",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Play HLS",
    "permissions": [
        "*:\/\/*\/*m3u8*",
        "*:\/\/*\/*.ts*",
        "webRequest",
        "webRequestBlocking"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "*.html"
    ]
}