LinkedIn Video Downloader
It's the simpliest way to download any video from LinkedIn website.
What is LinkedIn Video Downloader?
LinkedIn Video Downloader is a Chrome extension developed by Yuri Drabik, and its main feature is "It's the simpliest way to download any video from LinkedIn website.".
Extension Screenshots
Download LinkedIn Video Downloader Extension CRX File
Download LinkedIn Video Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | jphfcmjmlcoecehbanbbfgonpapcnjdi |
Official URL | https://chrome.google.com/webstore/detail/linkedin-video-downloader/jphfcmjmlcoecehbanbbfgonpapcnjdi |
Description | It's the simpliest way to download any video from LinkedIn website. |
File Size | 224 KB |
Installation Count | 30,000 |
Current Version | 0.0.21 |
Last Updated | 2022-03-07 |
Publish Date | 2020-06-16 |
Rating | 3.61/5 Total 38 Ratings |
Developer | Yuri Drabik |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/yurist38/linkedin-video-downloader |
Supported Languages | 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'" } |