Video Downloader

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

ما هو Video Downloader؟

Video Downloader هو إضافة Chrome تم تطويرها بواسطة MetaAlpha Studio، والميزة الرئيسية لها هي "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Video Downloader

قم بتنزيل ملفات الامتداد Video Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة 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
        }
    ]
}