Download video from facebook

Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element

什麼是Download video from facebook?

Download video from facebook是由drazyk.mateusz開發的Chrome擴展程式,該擴展的主要功能是“Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element”。

擴展截圖

screenshot

下載Download video from facebook擴展crx文件

下載Download video from facebook擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        IMPORTANT! 
This extension only works with the classic Facebook look. If you are using the new Facebook layout you can use my newest plugin I wrote:
https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb

How it works?

1. Click the right mouse button
2. Select the "Download Video" option
3. Wait for a moment and voila, the video is downloading

Remember
- After installing the extension, you should restart your browser or at least browser tab.
- When you are trying to download video from the "Watch" section, first you need to scroll down a bit to let the extension properly load. This only occurs on that page.

If you find any bugs, let me know by creating an issue in my GitHub repo
https://github.com/mdrazyk/download_video_fb_extension/issues
I will be happy to help you :)

Icons made by Pixel perfect from www.flaticon.com                    

擴展基本資訊

名稱 Download video from facebook Download video from facebook
ID kjjlfnmamiphaeamdngahedegooecnnc
官方網址 https://chromewebstore.google.com/detail/download-video-from-faceb/kjjlfnmamiphaeamdngahedegooecnnc
簡介 Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element
檔案大小 8.97 KB
安裝次數 2,854
目前版本 0.1.0
更新時間 2020-09-16
上架時間 2020-05-09
評分 2.33/5 共 6 次評分
開發者 drazyk.mateusz
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/mdrazyk/download_video_fb_extension
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download video from facebook",
    "description": "Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element",
    "version": "0.1.0",
    "manifest_version": 2,
    "icons": {
        "16": "download-line16.png",
        "48": "download-line48.png",
        "128": "download-line120.png"
    },
    "permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ]
}