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
官方網址 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
        }
    ]
}