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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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
        }
    ]
}