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
公式URL 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
Eメール [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
        }
    ]
}