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