Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Cos'è Birmingham Panopto Keeper?

Birmingham Panopto Keeper è un'estensione di Chrome sviluppata da Georgesab, e la sua funzione principale è "Download Panopto Videos from UoB Panopto".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Birmingham Panopto Keeper

Scarica i file di estensione Birmingham Panopto Keeper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
URL Ufficiale https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
Descrizione Download Panopto Videos from UoB Panopto
Dimensione del File 18.16 KB
Conteggio Installazioni 390
Versione Corrente 1.0.1
Ultimo Aggiornamento 2019-02-25
Data di Pubblicazione 2019-02-25
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Georgesab
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Georgesab/birmingham_panopto_keeper
Lingue Supportate 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"
    ]
}