Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Was ist Birmingham Panopto Keeper?

Birmingham Panopto Keeper ist eine Chrome-Erweiterung, die von Georgesab entwickelt wurde, und ihr Hauptmerkmal ist "Download Panopto Videos from UoB Panopto".

Erweiterungsscreenshots

screenshot

Birmingham Panopto Keeper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Birmingham Panopto Keeper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
Offizielle URL https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
Beschreibung Download Panopto Videos from UoB Panopto
Dateigröße 18.16 KB
Installationsanzahl 390
Aktuelle Version 1.0.1
Letztes Update 2019-02-25
Veröffentlichungsdatum 2019-02-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Georgesab
Zahlungsart free
Erweiterungswebsite https://github.com/Georgesab/birmingham_panopto_keeper
Unterstützte Sprachen 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"
    ]
}