Panopto Downloader

Adds download button for Panopto videos

What is Panopto Downloader?

Panopto Downloader is a Chrome extension developed by andrew-ma, and its main feature is "Adds download button for Panopto videos".

Extension Screenshots

screenshot

Download Panopto Downloader Extension CRX File

Download Panopto Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Panopto Downloader Panopto Downloader
ID eiipnolnldiglhnkfhcmmppdcfnjgdna
Official URL https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna
Description Adds download button for Panopto videos
File Size 8.11 KB
Installation Count 3,161
Current Version 1.2.2
Last Updated 2021-09-02
Publish Date 2021-09-02
Rating 3.67/5 Total 9 Ratings
Developer andrew-ma
Email [email protected]
Payment Type free
Extension Website https://github.com/andrew-ma/panopto_downloader_extension/
Supported Languages 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"
            ]
        }
    ]
}