HLS Downloader

Download fragmented media files with HLS (HTTP Live Streaming) downloader.

Τι είναι το HLS Downloader;

Το HLS Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον leocompson, και η κύρια λειτουργία του είναι "Download fragmented media files with HLS (HTTP Live Streaming) downloader.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HLS Downloader

Λήψη αρχείων επέκτασης HLS Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        HLS Downloader lets you easily download fragmented media files (with .ts file extension) from the internet. 

HLS or HTTP Live Steam is a new media format developed by Apple Inc. It contains a master playlist with the ".m3u8" file extension. First, the extension downloads the master playlist, and then within the master, it finds playlist content. Each playlist has several fragmented items. All items are displayed in the UI with a download and a remove button. When you press the download button the extension downloads all fragmented media and merges them all to generate a single media file. 

Note 1: the interface for the extension can be opened in a new tab or a separate window. Please right-click on the toolbar button to choose the appropriate context. Within the UI, there is a toggle button to turn the addon ON or OFF.

Note 2: HLS Downloader is NOT responsible for media content that you download with this add-on. We strongly recommend that you verify the related media copyright permissions on each website before downloading any media file(s).

Note 3: to download the HLS stream you gave 3 options. (1) To add a stream URL manually, please enter the desired URL with the ".m3u8" file extension in the UI. (2) As you browse the internet, this extension monitors the webpages and captures all HLS media files, and if anything is found, automatically downloads the playlist and updates the badge number accordingly (only when the addon is turned ON). The 3rd option for downloading the HLS stream is via the context-menu item. Please right-click on ".m3u8" streams and then select - Download with HLS Downloader - from the context menu.

If you have a feature request or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/hls-downloader.html).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HLS Downloader HLS Downloader
ID hkbifmjmkohpemgdkknlbgmnpocooogp
Επίσημο URL https://chromewebstore.google.com/detail/hls-downloader/hkbifmjmkohpemgdkknlbgmnpocooogp
Περιγραφή Download fragmented media files with HLS (HTTP Live Streaming) downloader.
Μέγεθος Αρχείου 44.35 KB
Αριθμός Εγκαταστάσεων 112,542
Τρέχουσα Έκδοση 0.1.2
Τελευταία Ενημέρωση 2023-08-16
Ημερομηνία Δημοσίευσης 2020-05-21
Αξιολόγηση 3.71/5 Συνολικά 119 Αξιολογήσεις
Προγραμματιστής leocompson
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mybrowseraddon.com/hls-downloader.html
Διεύθυνση URL της Σελίδας Βοήθειας https://mybrowseraddon.com/hls-downloader.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "HLS Downloader",
    "host_permissions": [
        "*:\/\/*\/*.m3u8"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/hls-downloader.html",
    "description": "Download fragmented media files with HLS (HTTP Live Streaming) downloader.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "downloads",
        "webRequest",
        "contextMenus",
        "webNavigation"
    ],
    "action": {
        "default_title": "HLS Downloader",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}