Video Downloader

Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section

Was ist Video Downloader?

Video Downloader ist eine Chrome-Erweiterung, die von MetaAlpha Studio entwickelt wurde, und ihr Hauptmerkmal ist "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Erweiterungsscreenshots

screenshot

Video Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Video Downloader-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
Offizielle URL https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Beschreibung Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
Dateigröße 14.61 KB
Installationsanzahl 8,345
Aktuelle Version 0.1.3
Letztes Update 2022-07-26
Veröffentlichungsdatum 2020-09-14
Bewertung 2.26/5 Insgesamt 19 Bewertungen
Entwickler MetaAlpha Studio
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Unterstützte Sprachen 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
        }
    ]
}