Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

什麼是Birmingham Panopto Keeper?

Birmingham Panopto Keeper是由Georgesab開發的Chrome擴展程式,該擴展的主要功能是“Download Panopto Videos from UoB Panopto”。

擴展截圖

screenshot

下載Birmingham Panopto Keeper擴展crx文件

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

擴展使用說明

                        A simple extension for Google Chrome that allows you to download videos from Panopto for later viewing. Only works for the University of Birmingham.

HOW TO USE: Navigate to the Panopto video itself you want to download, click the download icon (next to your user picture) and choose where you want the video to be saved. EASY!

Based on downloadPanopto by dfaour: https://github.com/dfaour/downloadPanopto

Released under GNU General License 3.0, source code available: https://github.com/Georgesab/birmingham_panopto_keeper                    

擴展基本資訊

名稱 Birmingham Panopto Keeper Birmingham Panopto Keeper
ID ijibaeamabpjdgenhlaihchhlfcephdl
官方網址 https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl
簡介 Download Panopto Videos from UoB Panopto
檔案大小 18.16 KB
安裝次數 390
目前版本 1.0.1
更新時間 2019-02-25
上架時間 2019-02-25
評分 5.00/5 共 1 次評分
開發者 Georgesab
付費類型 free
擴展官網 https://github.com/Georgesab/birmingham_panopto_keeper
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Birmingham Panopto Keeper",
    "version": "1.0.1",
    "description": "Download Panopto Videos from UoB Panopto",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "download-icon-grey.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bham.cloud.panopto.eu\/*"
            ],
            "js": [
                "payload.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "downloads"
    ]
}