Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Vad är Birmingham Panopto Keeper?

Birmingham Panopto Keeper är en Chrome-tillägg utvecklad av Georgesab, och dess huvudfunktion är "Download Panopto Videos from UoB Panopto".

Tilläggsskärmbilder

screenshot

Ladda ner Birmingham Panopto Keeper-förlängningens CRX-fil

Ladda ner Birmingham Panopto Keeper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
Officiell webbadress https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
Beskrivning Download Panopto Videos from UoB Panopto
Filstorlek 18.16 KB
Antal Installationer 390
Aktuell Version 1.0.1
Senast Uppdaterad 2019-02-25
Publiceringsdatum 2019-02-25
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Georgesab
Betalningssätt free
Tilläggswebbplats https://github.com/Georgesab/birmingham_panopto_keeper
Stödda Språk 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"
    ]
}