Fast Panopto

Allows user to choose a video speed beyond the defaults allowed by Panopto.

什麼是Fast Panopto?

Fast Panopto是由Rellikolbaid開發的Chrome擴展程式,該擴展的主要功能是“Allows user to choose a video speed beyond the defaults allowed by Panopto.”。

擴展截圖

screenshot

下載Fast Panopto擴展crx文件

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

擴展使用說明

                        Chrome extension which allows you to set Panopto's video player speeds greater or less than the defaults given on the page.
Additionally, allows users to download the webcam video displayed while on a Panopto video player page. An example URL where this extension may be used is given below.
Note: use of the extension requires being on a Panopto video session page of the form *://*.panopto.*/*/Viewer*.

Example page where this extension would be used:
https://arizona.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=3424a7d6-d170-4f61-92b0-a9d1015203d2

If you found this extension helpful, please consider donating by clicking the donate button in it! I'm a college student that wrote this extension for myself and others to use to help study or cram lectures and I could use the coffee money :)

New in 1.23: Usable by domains outside of the US                    

擴展基本資訊

名稱 Fast Panopto Fast Panopto
ID bginlheikaacjjdajifcbakcmfcgmefh
官方網址 https://chrome.google.com/webstore/detail/fast-panopto/bginlheikaacjjdajifcbakcmfcgmefh
簡介 Allows user to choose a video speed beyond the defaults allowed by Panopto.
檔案大小 25.59 KB
安裝次數 6,243
目前版本 1.23
更新時間 2019-12-06
上架時間 2019-12-06
評分 4.62/5 共 21 次評分
開發者 Rellikolbaid
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fast Panopto",
    "version": "1.23",
    "description": "Allows user to choose a video speed beyond the defaults allowed by Panopto.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.panopto.com\/*\/Viewer*"
            ],
            "js": [
                "pageDOMParser.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon.png",
            "32": "images\/icon.png",
            "48": "images\/icon.png",
            "128": "images\/icon.png"
        }
    },
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "manifest_version": 2
}