Video Downloader

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

What is Video Downloader?

Video Downloader is a Chrome extension developed by MetaAlpha Studio, and its main feature is "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Extension Screenshots

screenshot

Download Video Downloader Extension CRX File

Download Video Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
Official URL https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Description Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
File Size 14.61 KB
Installation Count 8,345
Current Version 0.1.3
Last Updated 2022-07-26
Publish Date 2020-09-14
Rating 2.26/5 Total 19 Ratings
Developer MetaAlpha Studio
Email [email protected]
Payment Type free
Help Page URL https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Supported Languages 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
        }
    ]
}