Inline HLS Player

Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)

Inline HLS Player là gì?

Inline HLS Player là một tiện ích mở rộng Chrome được phát triển bởi Alexey Tsikov, và tính năng chính của nó là "Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Inline HLS Player

Tải xuống các tệp mở rộng Inline HLS Player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension allows to watch HLS videos (designed for mobile phones) right inside desktop browser. Hls.js library is used to support playback.
No need to open video urls in separate tab or window. Inline HLS Player will detect if video tryes to load HLS and will handle it.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Inline HLS Player Inline HLS Player
ID geecgiclhemdbkmmbflfdophmppjjial
URL Chính Thức https://chromewebstore.google.com/detail/inline-hls-player/geecgiclhemdbkmmbflfdophmppjjial
Mô tả Extension allows browser to play HLS videos inside webpage using hls.js library (https://github.com/video-dev/hls.js/)
Kích Thước Tệp 7.68 KB
Số Lần Cài Đặt 7,092
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2017-12-08
Ngày Phát Hành 2017-12-08
Đánh Giá 3.55/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Alexey Tsikov
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inline HLS Player",
    "short_name": "Inline HLS",
    "description": "Extension allows browser to play HLS videos inside webpage using hls.js library (https:\/\/github.com\/video-dev\/hls.js\/)",
    "version": "0.1.1",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "detectHlsVideo.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "injectHlsJs.js"
    ]
}