Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Birmingham Panopto Keeper क्या है?

Birmingham Panopto Keeper Georgesab द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download Panopto Videos from UoB Panopto"।

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

screenshot

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

crx प्रारूप में Birmingham Panopto Keeper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A simple extension for Google Chrome that allows you to download videos from Panopto for later viewing. Only works for the University of Birmingham.

HOW TO USE: Navigate to the Panopto video itself you want to download, click the download icon (next to your user picture) and choose where you want the video to be saved. EASY!

Based on downloadPanopto by dfaour: https://github.com/dfaour/downloadPanopto

Released under GNU General License 3.0, source code available: https://github.com/Georgesab/birmingham_panopto_keeper                    

एक्सटेंशन की मूल जानकारी

नाम Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
आधिकारिक URL https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
विवरण Download Panopto Videos from UoB Panopto
फ़ाइल का आकार 18.16 KB
स्थापना संख्या 390
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2019-02-25
प्रकाशन तिथि 2019-02-25
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Georgesab
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Georgesab/birmingham_panopto_keeper
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Birmingham Panopto Keeper",
    "version": "1.0.1",
    "description": "Download Panopto Videos from UoB Panopto",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "download-icon-grey.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bham.cloud.panopto.eu\/*"
            ],
            "js": [
                "payload.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "downloads"
    ]
}