LinkedIn downloader

Download video and image from LinkedIn.com

LinkedIn downloaderคืออะไร?

LinkedIn downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AppforYou และคุณลักษณะหลักของมันคือ "Download video and image from LinkedIn.com"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LinkedIn downloader

ดาวน์โหลดไฟล์ส่วนขยาย LinkedIn downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Download photo or video from LinkedIn easily
Using our extension you can download LinkedIn photo or video not only from LinkedIn.com but from other websites too. 

In upper right corner of any photo or video you will see "Download" button (please see the Screenshots). 
Click this button and save the photo or video to your computer.
If you cannot see "Download" button, try to start playing video and the button will appear.

LinkedIn Downloader doesn't support private and password-protected videos, as well as any video on YouTube.

With some other "Downloader", you have to copy the video link from LinkedIn and paste it to the downloader. It is very complicated and not user friendly. With LinkedIn Downloader you can download all videos directly from LinkedIn web page with one single click without leaving the website.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LinkedIn downloader LinkedIn downloader
ID cmljhcfcdhjnajbebkhegddcgamnnkdm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/linkedin-downloader/cmljhcfcdhjnajbebkhegddcgamnnkdm
คำอธิบาย Download video and image from LinkedIn.com
ขนาดไฟล์ 153 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-04-14
วันที่เผยแพร่ 2021-04-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา AppforYou
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sites.google.com/view/linkedindownloader
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "version": "1.0",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "downloads"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/images\/logo16.png"
        }
    },
    "icons": {
        "16": "\/assets\/images\/logo16.png",
        "32": "\/assets\/images\/logo32.png",
        "48": "\/assets\/images\/logo48.png",
        "128": "\/assets\/images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "\/js\/jquery.js",
                "\/js\/video.js",
                "\/js\/fileSaver.js"
            ],
            "css": [
                "\/assets\/css\/video.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}