LinkedIn Video Downloader

It's the simpliest way to download any video from LinkedIn website.

Τι είναι το LinkedIn Video Downloader;

Το LinkedIn Video Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yuri Drabik, και η κύρια λειτουργία του είναι "It's the simpliest way to download any video from LinkedIn website.".

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

screenshot

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

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

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

                        This extension adds a small download button on all video elements on LinkedIn pages. That button allows you to download the video file in one single click.

IMPORTANT: This extension currently does not support some of the videos because they are streams and use a specific format which is difficult to handle.

This extension is open sourced and available on GitHub:
https://github.com/yurist38/linkedin-video-downloader                    

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

Όνομα LinkedIn Video Downloader LinkedIn Video Downloader
ID jphfcmjmlcoecehbanbbfgonpapcnjdi
Επίσημο URL https://chrome.google.com/webstore/detail/linkedin-video-downloader/jphfcmjmlcoecehbanbbfgonpapcnjdi
Περιγραφή It's the simpliest way to download any video from LinkedIn website.
Μέγεθος Αρχείου 224 KB
Αριθμός Εγκαταστάσεων 30,000
Τρέχουσα Έκδοση 0.0.21
Τελευταία Ενημέρωση 2022-03-07
Ημερομηνία Δημοσίευσης 2020-06-16
Αξιολόγηση 3.61/5 Συνολικά 38 Αξιολογήσεις
Προγραμματιστής Yuri Drabik
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/yurist38/linkedin-video-downloader
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkedIn Video Downloader",
    "version": "0.0.21",
    "description": "It's the simpliest way to download any video from LinkedIn website.",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/icon16.png",
            "24": "assets\/icons\/icon24.png",
            "32": "assets\/icons\/icon32.png"
        },
        "default_title": "LinkedIn Video Downloader",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "content\/index.js"
            ],
            "css": [
                "content\/styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": false
    },
    "options_page": "options\/index.html",
    "web_accessible_resources": [
        "assets\/icons\/*.png"
    ],
    "permissions": [
        "https:\/\/*.linkedin.com\/*",
        "https:\/\/fonts.googleapis.com\/*",
        "https:\/\/w.appzi.io\/*",
        "https:\/\/cdnjs.buymeacoffee.com\/*",
        "webNavigation",
        "downloads",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/w.appzi.io https:\/\/cdnjs.buymeacoffee.com; object-src 'self'"
}