Fast Panopto

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

O que é Fast Panopto?

Fast Panopto é uma extensão do Chrome desenvolvida por Rellikolbaid, e sua principal característica é "Allows user to choose a video speed beyond the defaults allowed by Panopto.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fast Panopto

Baixe arquivos de extensão Fast Panopto no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Fast Panopto Fast Panopto
ID bginlheikaacjjdajifcbakcmfcgmefh
URL Oficial https://chrome.google.com/webstore/detail/fast-panopto/bginlheikaacjjdajifcbakcmfcgmefh
Descrição Allows user to choose a video speed beyond the defaults allowed by Panopto.
Tamanho do Arquivo 25.59 KB
Contagem de Instalações 6,243
Versão Atual 1.23
Última Atualização 2019-12-06
Data de Publicação 2019-12-06
Classificação 4.62/5 Total de 21 Avaliações
Desenvolvedor Rellikolbaid
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}