Download video from facebook

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

Download video from facebook란 무엇입니까?

Download video from facebook은(는) drazyk.mateusz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element"입니다.

확장 프로그램 스크린샷

screenshot

Download video from facebook 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Download video from facebook Download video from facebook
ID kjjlfnmamiphaeamdngahedegooecnnc
공식 URL https://chromewebstore.google.com/detail/download-video-from-faceb/kjjlfnmamiphaeamdngahedegooecnnc
설명 Chrome plugin that extends the facebook context menu and adds functionality for downloading the selected video element
파일 크기 8.97 KB
설치 횟수 2,854
현재 버전 0.1.0
최근 업데이트 2020-09-16
출시 날짜 2020-05-09
평점 2.33/5 총 6 개의 평점
개발자 drazyk.mateusz
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/mdrazyk/download_video_fb_extension
지원되는 언어 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
        }
    ]
}