LinkedIn Video Downloader
It's the simpliest way to download any video from LinkedIn website.
LinkedIn Video Downloader란 무엇입니까?
LinkedIn Video Downloader은(는) Yuri Drabik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It's the simpliest way to download any video from LinkedIn website."입니다.
확장 프로그램 스크린샷
LinkedIn Video Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 확장 프로그램 기본 정보
| 이름 | |
| 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'"
} | |