Video Downloader

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

O que é Video Downloader?

Video Downloader é uma extensão do Chrome desenvolvida por MetaAlpha Studio, e sua principal característica é "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Video Downloader

Baixe arquivos de extensão Video Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
URL Oficial https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Descrição Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
Tamanho do Arquivo 14.61 KB
Contagem de Instalações 8,345
Versão Atual 0.1.3
Última Atualização 2022-07-26
Data de Publicação 2020-09-14
Classificação 2.26/5 Total de 19 Avaliações
Desenvolvedor MetaAlpha Studio
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Idiomas Suportados 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
        }
    ]
}