Panopto Downloader

Adds download button for Panopto videos

Wat is Panopto Downloader?

Panopto Downloader is een Chrome-extensie ontwikkeld door andrew-ma, en de belangrijkste functie is "Adds download button for Panopto videos".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Panopto Downloader

Download Panopto Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Panopto Downloader Panopto Downloader
ID eiipnolnldiglhnkfhcmmppdcfnjgdna
Officiële URL https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna
Beschrijving Adds download button for Panopto videos
Bestandsgrootte 8.11 KB
Aantal Installaties 3,161
Huidige Versie 1.2.2
Laatst Bijgewerkt 2021-09-02
Publicatiedatum 2021-09-02
Beoordeling 3.67/5 Totaal 9 Beoordelingen
Ontwikkelaar andrew-ma
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/andrew-ma/panopto_downloader_extension/
Ondersteunde Talen 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"
            ]
        }
    ]
}