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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |