Panopticlone

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

Qu'est-ce que Panopticlone ?

Panopticlone est une extension Chrome développée par https://assemblyco.de, et sa fonction principale est "A Chrome extension to help users download videos from Panopto (an enterprise video content management system).".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Panopticlone

Téléchargez les fichiers d'extension Panopticlone 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

                        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.                    

Informations de Base sur l'Extension

Nom Panopticlone Panopticlone
ID ojpnimfglaagmipdcdabpfnehbbbaonm
URL Officiel https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm
Description A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
Taille du Fichier 45.71 KB
Nombre d'Installations 1,472
Version Actuelle 0.3.3
Dernière Mise à Jour 2015-12-21
Date de Publication 2015-12-21
Évaluation 2.94/5 Total 17 Évaluations
Développeur https://assemblyco.de
Type de Paiement free
Site Web de l'Extension https://github.com/charlienewey/panopticlone
URL de la Page d'Aide https://github.com/charlienewey/panopticlone/issues
Langues Prises en Charge 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"
    ]
}