Panopto Downloader

Downloads Panopto videos. Tested with the University of Cambridge Panopto website.

Was ist Panopto Downloader?

Panopto Downloader ist eine Chrome-Erweiterung, die von Bentley Carr entwickelt wurde, und ihr Hauptmerkmal ist "Downloads Panopto videos. Tested with the University of Cambridge Panopto website.".

Erweiterungsscreenshots

screenshot

Panopto Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Panopto Downloader-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

                        NOTE: It has come to my attention that sadly Panopto Downloader no longer works for some organisations. There may be an update in the upcoming months. Thank you to everyone who have supported Panopto Downloader up until now.

__________________________________

Downloads Panopto videos. Tested with the University of Cambridge Panopto website.

Panpoto Downloader is in no way affiliated with Panopto. You should check with your institution to determine whether you are permitted to store downloads of recordings before using this tool.                    

Grundlegende Informationen zur Erweiterung

Name Panopto Downloader Panopto Downloader
ID jcgoagdconfndcjginjeokegdpahebno
Offizielle URL https://chrome.google.com/webstore/detail/panopto-downloader/jcgoagdconfndcjginjeokegdpahebno
Beschreibung Downloads Panopto videos. Tested with the University of Cambridge Panopto website.
Dateigröße 31.18 KB
Installationsanzahl 16,288
Aktuelle Version 1.3.2
Letztes Update 2021-07-31
Veröffentlichungsdatum 2020-09-24
Bewertung 4.48/5 Insgesamt 44 Bewertungen
Entwickler Bentley Carr
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Yharooer/panopto-downloader-chrome
Hilfeseite URL https://github.com/Yharooer/panopto-downloader-chrome/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Panopto Downloader",
    "version": "1.3.2",
    "description": "Downloads Panopto videos. Tested with the University of Cambridge Panopto website.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "downloads",
        "activeTab",
        "https:\/\/*.panopto.eu\/*",
        "https:\/\/*.panopto.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "panoptodl.js"
            ],
            "matches": [
                "https:\/\/*.panopto.eu\/*",
                "https:\/\/*.panopto.com\/*"
            ]
        }
    ]
}