Panopticlone
A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
什么是Panopticlone?
Panopticlone是由https://assemblyco.de开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to help users download videos from Panopto (an enterprise video content management system).”。
扩展截图
下载Panopticlone扩展crx文件
下载Panopticlone扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Panopticlone |
ID | ojpnimfglaagmipdcdabpfnehbbbaonm |
官方URL | https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm |
简介 | A Chrome extension to help users download videos from Panopto (an enterprise video content management system). |
文件大小 | 45.71 KB |
安装次数 | 1,472 |
当前版本 | 0.3.3 |
更新时间 | 2015-12-21 |
上架时间 | 2015-12-21 |
评分 | 2.94/5 共17次评分 |
开发者 | https://assemblyco.de |
付费类型 | free |
扩展官网 | https://github.com/charlienewey/panopticlone |
帮助页面URL | https://github.com/charlienewey/panopticlone/issues |
支持的语言 | 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" ] } |