Video Downloader

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

Qu'est-ce que Video Downloader ?

Video Downloader est une extension Chrome développée par MetaAlpha Studio, et sa fonction principale est "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Video Downloader

Téléchargez les fichiers d'extension Video Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
URL Officiel 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
Taille du Fichier 14.61 KB
Nombre d'Installations 8,345
Version Actuelle 0.1.3
Dernière Mise à Jour 2022-07-26
Date de Publication 2020-09-14
Évaluation 2.26/5 Total 19 Évaluations
Développeur MetaAlpha Studio
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Langues Prises en Charge 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
        }
    ]
}