Kick VOD Downloader

View and rewind Kick livstreams and download VODs

Τι είναι το Kick VOD Downloader;

Το Kick VOD Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andre Bradshaw, και η κύρια λειτουργία του είναι "View and rewind Kick livstreams and download VODs".

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

screenshot
screenshot

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

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

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

                        Pause and rewind livestreams!
This extension allows users to view and download Kick VODs and livestreams within the browser. If the streamer has VODs turned on, you will be able to pause, rewind, playback and download the current livestream.

Recordings of livestreams will download every 15 minutes. The recording starts when you click the REC button. When you arrive on the page, the tool will keep a 5-minute rolling buffer before you click the REC button. So, if you are watching a stream and decide you want to record what you just viewed, you will automatically get back whatever was in that buffer as well.
When you click the STOP button, the tool will make one more request to the server for the most recent stream data and then download. 

This tool is still under development, so there will be some issues.

ATTENTION:
Be sure you have enabled kick.com to download multiple files within your browser settings or you will only get the first video segment when downloading VODs.

Version 1.12 update: (27 Nov 2023)
1) added the ability to pause, rewind, playback and download the livestream *(if the streamer has VODs set to record)
2) VOD downloads are now m4v files. This should help with importing to editing software                    

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

Όνομα Kick VOD Downloader Kick VOD Downloader
ID fpmjccgjphmlembbnnfedpejpdjacail
Επίσημο URL https://chromewebstore.google.com/detail/kick-vod-downloader/fpmjccgjphmlembbnnfedpejpdjacail
Περιγραφή View and rewind Kick livstreams and download VODs
Μέγεθος Αρχείου 184 KB
Αριθμός Εγκαταστάσεων 4,264
Τρέχουσα Έκδοση 1.14
Τελευταία Ενημέρωση 2023-11-28
Ημερομηνία Δημοσίευσης 2023-09-11
Αξιολόγηση 2.75/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής Andre Bradshaw
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Kick VOD Downloader",
    "version": "1.14",
    "description": "View and rewind Kick livstreams and download VODs",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/kick.com\/*"
            ],
            "js": [
                "utilities.js",
                "icons.js",
                "hls.js",
                "domUtils.js",
                "css.js",
                "apicalls.js",
                "uiCreation.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/kick.com\/*",
        "https:\/\/www.kick.com\/*",
        "https:\/\/stream.kick.com\/*",
        "https:\/\/search.kick.com\/*",
        "https:\/\/www.gstatic.com\/*"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}