HLS Downloader

HTTP Live Stream downloader

什麼是HLS Downloader?

HLS Downloader是由Fatema Reba開發的Chrome擴展程式,該擴展的主要功能是“HTTP Live Stream downloader”。

擴展截圖

screenshot

下載HLS Downloader擴展crx文件

下載HLS Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        1. Open a tab with an HTTP Live Stream.
2. Click the extension icon.
3. Select a playlist.
4. Select a resolution (quality of the video).
5. Wait for the download to complete.

Check Log:
 Version 3.2.1.2:
    Add features share link video m3u8 on socials: Twitter, LinkedIn and auto post Facebook with api post.                    

擴展基本資訊

名稱 HLS Downloader HLS Downloader
ID fopnhepeflgcnppklfnejokkkeomdgik
官方網址 https://chromewebstore.google.com/detail/hls-downloader/fopnhepeflgcnppklfnejokkkeomdgik
簡介 HTTP Live Stream downloader
檔案大小 288 KB
安裝次數 74,786
目前版本 3.2.1.3
更新時間 2023-11-18
上架時間 2022-01-14
評分 4.06/5 共 117 次評分
開發者 Fatema Reba
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://sites.google.com/view/multi-extension-policy/home
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "HLS Download",
    "name": "HLS Downloader",
    "description": "HTTP Live Stream downloader",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "HLS Downloader",
        "default_icon": "assets\/icons\/128.png"
    },
    "version": "3.2.1.3",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "assets\/icons\/*"
            ],
            "use_dynamic_url": false
        }
    ],
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "unlimitedStorage",
        "storage",
        "downloads",
        "tabs",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png",
        "256": "assets\/icons\/256.png"
    }
}