Video Share

Chrome plugin for downloading videos from closed Facebook groups

Video Share क्या है?

Video Share drazyk.mateusz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome plugin for downloading videos from closed Facebook groups"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Video Share एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}