Panopticlone

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

Panopticlone là gì?

Panopticlone là một tiện ích mở rộng Chrome được phát triển bởi https://assemblyco.de, và tính năng chính của nó là "A Chrome extension to help users download videos from Panopto (an enterprise video content management system).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Panopticlone

Tải xuống các tệp mở rộng Panopticlone dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Panopticlone Panopticlone
ID ojpnimfglaagmipdcdabpfnehbbbaonm
URL Chính Thức https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm
Mô tả A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
Kích Thước Tệp 45.71 KB
Số Lần Cài Đặt 1,472
Phiên Bản Hiện Tại 0.3.3
Cập Nhật Lần Cuối 2015-12-21
Ngày Phát Hành 2015-12-21
Đánh Giá 2.94/5 Tổng số 17 Đánh Giá
Nhà Phát Triển https://assemblyco.de
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/charlienewey/panopticlone
URL Trang Trợ Giúp https://github.com/charlienewey/panopticlone/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}