Download video from facebook

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

Was ist Download video from facebook?

Download video from facebook ist eine Chrome-Erweiterung, die von drazyk.mateusz entwickelt wurde, und ihr Hauptmerkmal ist "Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element".

Erweiterungsscreenshots

screenshot

Download video from facebook-Erweiterungs-CRX-Datei herunterladen

Laden Sie Download video from facebook-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Download video from facebook Download video from facebook
ID kjjlfnmamiphaeamdngahedegooecnnc
Offizielle URL https://chromewebstore.google.com/detail/download-video-from-faceb/kjjlfnmamiphaeamdngahedegooecnnc
Beschreibung Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element
Dateigröße 8.97 KB
Installationsanzahl 2,854
Aktuelle Version 0.1.0
Letztes Update 2020-09-16
Veröffentlichungsdatum 2020-05-09
Bewertung 2.33/5 Insgesamt 6 Bewertungen
Entwickler drazyk.mateusz
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/mdrazyk/download_video_fb_extension
Unterstützte Sprachen 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
        }
    ]
}