Panopticlone
A Chrome extension to help users download videos from Panopto (an enterprise video content management system).
Co to jest Panopticlone?
Panopticlone to rozszerzenie Chrome opracowane przez https://assemblyco.de, a jego główną funkcją jest „A Chrome extension to help users download videos from Panopto (an enterprise video content management system).”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Panopticlone
Pobierz pliki rozszerzeń Panopticlone w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Panopticlone |
ID | ojpnimfglaagmipdcdabpfnehbbbaonm |
Oficjalny URL | https://chromewebstore.google.com/detail/panopticlone/ojpnimfglaagmipdcdabpfnehbbbaonm |
Opis | A Chrome extension to help users download videos from Panopto (an enterprise video content management system). |
Rozmiar pliku | 45.71 KB |
Liczba instalacji | 1,472 |
Aktualna Wersja | 0.3.3 |
Ostatnia Aktualizacja | 2015-12-21 |
Data Publikacji | 2015-12-21 |
Ocena | 2.94/5 Łącznie 17 Oceny |
Deweloper | https://assemblyco.de |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/charlienewey/panopticlone |
Adres URL Strony Pomocy | https://github.com/charlienewey/panopticlone/issues |
Obsługiwane Języki | 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" ] } |