HLS Downloader

HTTP Live Stream downloader

HLS Downloader란 무엇입니까?

HLS Downloader은(는) Fatema Reba에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HTTP Live Stream downloader"입니다.

확장 프로그램 스크린샷

screenshot

HLS Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}