Video Share

Chrome plugin for downloading videos from closed Facebook groups

Video Share란 무엇입니까?

Video Share은(는) drazyk.mateusz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome plugin for downloading videos from closed Facebook groups"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Video Share 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Facebook closed groups don't let users download or share video content from them. It's sometimes annoying when you are browsing through meme Facebook groups, and you see a funny video that you would like to share with a friend... but you can't. Exactly that case pushed me to create the Video Share extension that lets you download or get a sharable link to any video in any closed Facebook group.

How to use it:
https://www.youtube.com/watch?v=U4ZawItBJow

IMPORTANT!
After installing the extension, you should restart your browser or at least browser tab.

For your information:

1. Facebook video URL expires after a few hours, and you won't be able to watch the video from that link anymore. However, you can generate a new one and share it again.

2. The extension only supports downloading videos from closed Facebook groups right now. However, I might extend the functionality to support more cases in the future.

3. If you find any bug, let me know by creating an issue in my GitHub repo. I will be happy to help you :)
Link: https://github.com/mdrazyk/video_share/issues                    

확장 프로그램 기본 정보

이름 Video Share Video Share
ID aloioalonlgckokmklfmjgoomkeocphb
공식 URL https://chromewebstore.google.com/detail/video-share/aloioalonlgckokmklfmjgoomkeocphb
설명 Chrome plugin for downloading videos from closed Facebook groups
파일 크기 380 KB
설치 횟수 236
현재 버전 0.1.1
최근 업데이트 2020-02-29
출시 날짜 2020-02-29
개발자 drazyk.mateusz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mdrazyk/video_share
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Share",
    "description": "Chrome plugin for downloading videos from closed Facebook groups",
    "version": "0.1.1",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "favicon-16x16.png",
        "48": "favicon-48x48.png",
        "128": "favicon-120x120.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}