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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้านโยบายความเป็นส่วนตัว 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"
    }
}