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
Eメール [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
}