Panopticlone

A Chrome extension to help users download videos from Panopto (an enterprise video content management system).

Wat is Panopticlone?

Panopticlone is een Chrome-extensie ontwikkeld door https://assemblyco.de, en de belangrijkste functie is "A Chrome extension to help users download videos from Panopto (an enterprise video content management system).".

Extensie Screenshots

Download het CRX-bestand van de extensie Panopticlone

Download Panopticlone-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Panopticlone is a useful Chrome extension to help automatically download video sessions from Panopto installations.

Browse to a folder on Panopto, and Panopticlone will allow you to download all sessions in that video folder with a single click - even if RSS feeds are disabled.

Video sessions will be downloaded and placed into a convenient subfolder in your Downloads folder.                    

Basisinformatie over de Extensie

Naam Panopticlone Panopticlone
ID ojpnimfglaagmipdcdabpfnehbbbaonm
Officiële URL https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm
Beschrijving A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
Bestandsgrootte 45.71 KB
Aantal Installaties 1,472
Huidige Versie 0.3.3
Laatst Bijgewerkt 2015-12-21
Publicatiedatum 2015-12-21
Beoordeling 2.94/5 Totaal 17 Beoordelingen
Ontwikkelaar https://assemblyco.de
Betalingswijze free
Extensiewebsite https://github.com/charlienewey/panopticlone
Help Pagina-URL https://github.com/charlienewey/panopticlone/issues
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Panopticlone",
    "description": "A Chrome extension to help users download videos from Panopto (an enterprise video content management system).",
    "version": "0.3.3",
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "res\/img\/icon_64.png",
        "default_popup": "src\/html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/Panopto\/*\/List.aspx*"
            ],
            "js": [
                ".\/src\/js\/filter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "res\/img\/icon_48.png",
        "64": "res\/img\/icon_64.png",
        "128": "res\/img\/icon_128.png"
    },
    "permissions": [
        "downloads",
        "notifications",
        "tabs"
    ]
}