Video Downloader

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

什么是Video Downloader?

Video Downloader是由MetaAlpha Studio开发的Chrome扩展程序,该扩展的主要功能是“Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section”。

扩展截图

screenshot

下载Video Downloader扩展crx文件

下载Video Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
官方URL https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
简介 Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
文件大小 14.61 KB
安装次数 8,345
当前版本 0.1.3
更新时间 2022-07-26
上架时间 2020-09-14
评分 2.26/5 共19次评分
开发者 MetaAlpha Studio
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
支持的语言 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
        }
    ]
}