Video Downloader

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

Wat is Video Downloader?

Video Downloader is een Chrome-extensie ontwikkeld door MetaAlpha Studio, en de belangrijkste functie is "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Video Downloader

Download Video Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
Officiële URL https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Beschrijving Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
Bestandsgrootte 14.61 KB
Aantal Installaties 8,345
Huidige Versie 0.1.3
Laatst Bijgewerkt 2022-07-26
Publicatiedatum 2020-09-14
Beoordeling 2.26/5 Totaal 19 Beoordelingen
Ontwikkelaar MetaAlpha Studio
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Ondersteunde Talen 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
        }
    ]
}