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
官方URL 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
}