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文件

下載Video Share擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}