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 |
官方網址 | 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" ] } |