LinkedIn Video Downloader
It's the simpliest way to download any video from LinkedIn website.
Cos'è LinkedIn Video Downloader?
LinkedIn Video Downloader è un'estensione di Chrome sviluppata da Yuri Drabik, e la sua funzione principale è "It's the simpliest way to download any video from LinkedIn website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LinkedIn Video Downloader
Scarica i file di estensione LinkedIn Video Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | jphfcmjmlcoecehbanbbfgonpapcnjdi |
| URL Ufficiale | https://chrome.google.com/webstore/detail/linkedin-video-downloader/jphfcmjmlcoecehbanbbfgonpapcnjdi |
| Descrizione | It's the simpliest way to download any video from LinkedIn website. |
| Dimensione del File | 224 KB |
| Conteggio Installazioni | 30,000 |
| Versione Corrente | 0.0.21 |
| Ultimo Aggiornamento | 2022-03-07 |
| Data di Pubblicazione | 2020-06-16 |
| Valutazione | 3.61/5 Totale 38 Valutazioni |
| Sviluppatore | Yuri Drabik |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/yurist38/linkedin-video-downloader |
| Lingue Supportate | 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'"
} | |