Video Downloader

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

Apa itu Video Downloader?

Video Downloader adalah ekstensi Chrome yang dikembangkan oleh MetaAlpha Studio, dan fitur utamanya adalah "Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Video Downloader

Unduh file ekstensi Video Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Video Downloader Video Downloader
ID pdgnickkolfaldghlnonpiefbokaecnb
URL Resmi https://chrome.google.com/webstore/detail/video-downloader/pdgnickkolfaldghlnonpiefbokaecnb
Deskripsi Chrome plugin that adds video download functionality to the Facebook news feed, groups, and the Watch section
Ukuran File 14.61 KB
Jumlah Instalasi 8,345
Versi Saat Ini 0.1.3
Terakhir Diperbarui 2022-07-26
Tanggal Publikasi 2020-09-14
Penilaian 2.26/5 Total 19 Penilaian
Pengembang MetaAlpha Studio
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/mdrazyk/download_video_fb_extension/tree/facebook_video_downloader_v2
Bahasa yang Didukung 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
        }
    ]
}