Fast Panopto

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

Qu'est-ce que Fast Panopto ?

Fast Panopto est une extension Chrome développée par Rellikolbaid, et sa fonction principale est "Allows user to choose a video speed beyond the defaults allowed by Panopto.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Fast Panopto

Téléchargez les fichiers d'extension Fast Panopto au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Fast Panopto Fast Panopto
ID bginlheikaacjjdajifcbakcmfcgmefh
URL Officiel https://chrome.google.com/webstore/detail/fast-panopto/bginlheikaacjjdajifcbakcmfcgmefh
Description Allows user to choose a video speed beyond the defaults allowed by Panopto.
Taille du Fichier 25.59 KB
Nombre d'Installations 6,243
Version Actuelle 1.23
Dernière Mise à Jour 2019-12-06
Date de Publication 2019-12-06
Évaluation 4.62/5 Total 21 Évaluations
Développeur Rellikolbaid
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}