Panopto Downloader

Adds download button for Panopto videos

Was ist Panopto Downloader?

Panopto Downloader ist eine Chrome-Erweiterung, die von andrew-ma entwickelt wurde, und ihr Hauptmerkmal ist "Adds download button for Panopto videos".

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

                        This adds a green download button when on a Panopto video page.

It uses the Panopto video page title to create a valid filename, and copies the filename to the clipboard.

When the user clicks on the button, a new tab will open with the Panopto video as a .MP4 file.

The user can press Ctrl+S to open the "Save As" prompt, and paste the valid filename from the clipboard.                    

Grundlegende Informationen zur Erweiterung

Name Panopto Downloader Panopto Downloader
ID eiipnolnldiglhnkfhcmmppdcfnjgdna
Offizielle URL https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna
Beschreibung Adds download button for Panopto videos
Dateigröße 8.11 KB
Installationsanzahl 3,161
Aktuelle Version 1.2.2
Letztes Update 2021-09-02
Veröffentlichungsdatum 2021-09-02
Bewertung 3.67/5 Insgesamt 9 Bewertungen
Entwickler andrew-ma
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/andrew-ma/panopto_downloader_extension/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Panopto Downloader",
    "version": "1.2.2",
    "manifest_version": 2,
    "description": "Adds download button for Panopto videos",
    "homepage_url": "https:\/\/github.com\/andrew-ma\/panopto_downloader_extension",
    "minimum_chrome_version": "74",
    "icons": {
        "48": "\/icon.png",
        "96": "\/[email protected]"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.panopto.eu\/*",
                "*:\/\/*.panopto.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.panopto.com\/*",
                "*:\/\/support.panopto.com\/*",
                "*:\/\/login.panopto.com\/*"
            ],
            "js": [
                "\/panopto-download-button.js"
            ],
            "css": [
                "\/panopto-download-button.css"
            ]
        }
    ]
}