Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Qu'est-ce que Birmingham Panopto Keeper ?

Birmingham Panopto Keeper est une extension Chrome développée par Georgesab, et sa fonction principale est "Download Panopto Videos from UoB Panopto".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Birmingham Panopto Keeper

Téléchargez les fichiers d'extension Birmingham Panopto Keeper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
URL Officiel https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
Description Download Panopto Videos from UoB Panopto
Taille du Fichier 18.16 KB
Nombre d'Installations 390
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-02-25
Date de Publication 2019-02-25
Évaluation 5.00/5 Total 1 Évaluations
Développeur Georgesab
Type de Paiement free
Site Web de l'Extension https://github.com/Georgesab/birmingham_panopto_keeper
Langues Prises en Charge 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"
    ]
}