Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Hvad er Birmingham Panopto Keeper?

Birmingham Panopto Keeper er en Chrome-udvidelse udviklet af Georgesab, og dens hovedfunktion er "Download Panopto Videos from UoB Panopto".

Udvidelsesskærmbilleder

screenshot

Download Birmingham Panopto Keeper-udvidelses-CRX-fil

Download Birmingham Panopto Keeper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
Officiel URL https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
Beskrivelse Download Panopto Videos from UoB Panopto
Filstørrelse 18.16 KB
Antal Installationer 390
Nuværende Version 1.0.1
Senest Opdateret 2019-02-25
Udgivelsesdato 2019-02-25
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Georgesab
Betalingsmetode free
Udvidelseswebsted https://github.com/Georgesab/birmingham_panopto_keeper
Understøttede Sprog 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"
    ]
}