Video Downloader

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

Video Downloader là gì?

Video Downloader là một tiện ích mở rộng Chrome được phát triển bởi MetaAlpha Studio, và tính năng chính của nó là "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Downloader

Tải xuống các tệp mở rộng Video Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
URL Chính Thức https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Mô tả Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
Kích Thước Tệp 14.61 KB
Số Lần Cài Đặt 8,345
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2022-07-26
Ngày Phát Hành 2020-09-14
Đánh Giá 2.26/5 Tổng số 19 Đánh Giá
Nhà Phát Triển MetaAlpha Studio
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}