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'"
}