M3U8 finder and HLS player

It opens a new tab on a video player

ما هو M3U8 finder and HLS player؟

M3U8 finder and HLS player هو إضافة Chrome تم تطويرها بواسطة https://www.reloltv.com، والميزة الرئيسية لها هي "It opens a new tab on a video player".

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

screenshot
screenshot

تحميل ملف CRX للإضافة M3U8 finder and HLS player

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

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

                        Clicking on the extension icon will let you play any m3u8 embedded as a video html element in the current page                    

معلومات أساسية عن التمديد

الاسم M3U8 finder and HLS player M3U8 finder and HLS player
ID gijhpnmjcpbddpedmmdihijogkkejfgj
عنوان URL الرسمي https://chromewebstore.google.com/detail/m3u8-finder-and-hls-playe/gijhpnmjcpbddpedmmdihijogkkejfgj
الوصف It opens a new tab on a video player
حجم الملف 2.18 MB
عدد التثبيتات 23,928
النسخة الحالية 1.1
آخر تحديث 2020-12-11
تاريخ النشر 2020-12-10
تقييم 4.55/5 مجموع تقييمات 22
المطور https://www.reloltv.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.reloltv.com/
عنوان صفحة سياسة الخصوصية http://www.justas.biz/privacypolicy.htm
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "M3U8 finder and HLS player",
    "description": "It opens a new tab on a video player",
    "version": "1.1",
    "offline_enabled": true,
    "icons": {
        "32": "img\/icon32.png",
        "128": "img\/icon128.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "m3u8_options.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "event.js",
            "global.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "m3u8.html"
    },
    "permissions": [
        "activeTab",
        "",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "web_accessible_resources": [
        "*.js",
        "*.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "script_in_content.js",
                "m3u8.js",
                "background.js"
            ],
            "css": [
                "css\/materialdesignicons.min.css"
            ],
            "run_at": "document_start"
        }
    ],
    "omnibox": {
        "keyword": "m3u8"
    }
}