Video Downloader

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

¿Qué es Video Downloader?

Video Downloader es una extensión de Chrome desarrollada por MetaAlpha Studio, y su función principal es "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Video Downloader

Descarga archivos de extensión Video Downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
URL Oficial https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Descripción Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
Tamaño del Archivo 14.61 KB
Cantidad de Instalaciones 8,345
Versión Actual 0.1.3
Última Actualización 2022-07-26
Fecha de Publicación 2020-09-14
Calificación 2.26/5 Total de 19 Calificaciones
Desarrollador MetaAlpha Studio
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Idiomas Soportados 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
        }
    ]
}