Panopticlone

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

What is Panopticlone?

Panopticlone is a Chrome extension developed by https://assemblyco.de, and its main feature is "A Chrome extension to help users download videos from Panopto (an enterprise video content management system).".

Extension Screenshots

Download Panopticlone Extension CRX File

Download Panopticlone extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Panopticlone Panopticlone
ID ojpnimfglaagmipdcdabpfnehbbbaonm
Official URL https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm
Description A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
File Size 45.71 KB
Installation Count 1,472
Current Version 0.3.3
Last Updated 2015-12-21
Publish Date 2015-12-21
Rating 2.94/5 Total 17 Ratings
Developer https://assemblyco.de
Payment Type free
Extension Website https://github.com/charlienewey/panopticlone
Help Page URL https://github.com/charlienewey/panopticlone/issues
Supported Languages 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"
    ]
}