Panopto Downloader

Adds download button for Panopto videos

什麼是Panopto Downloader?

Panopto Downloader是由andrew-ma開發的Chrome擴展程式,該擴展的主要功能是“Adds download button for Panopto videos”。

擴展截圖

screenshot

下載Panopto Downloader擴展crx文件

下載Panopto Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Panopto Downloader Panopto Downloader
ID eiipnolnldiglhnkfhcmmppdcfnjgdna
官方網址 https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna
簡介 Adds download button for Panopto videos
檔案大小 8.11 KB
安裝次數 3,161
目前版本 1.2.2
更新時間 2021-09-02
上架時間 2021-09-02
評分 3.67/5 共 9 次評分
開發者 andrew-ma
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/andrew-ma/panopto_downloader_extension/
支援的語言 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"
            ]
        }
    ]
}