Video Downloader

Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section

Video Downloaderคืออะไร?

Video Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MetaAlpha Studio และคุณลักษณะหลักของมันคือ "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section"

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

screenshot

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

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

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

                        How does it work?

1. Right-click on the Facebook video element
2. Click the "Download Video" button
3. Wait for a while for the video to start downloading

IMPORTANT! 
After installing the extension, you should restart your browser or at least the browser tab.

If you find any bugs, let me know by creating an issue in my GitHub repo
https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2

I will be happy to help you :)

Icons made by Pixel perfect from www.flaticon.com                    

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

ชื่อ Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
คำอธิบาย Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
ขนาดไฟล์ 14.61 KB
จำนวนการติดตั้ง 8,345
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2022-07-26
วันที่เผยแพร่ 2020-09-14
คะแนน 2.26/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา MetaAlpha Studio
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Downloader",
    "description": "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section",
    "version": "0.1.3",
    "manifest_version": 2,
    "icons": {
        "128": "download.png"
    },
    "permissions": [
        "",
        "downloads",
        "storage"
    ],
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ]
}