Birmingham Panopto Keeper
Download Panopto Videos from UoB Panopto
Co to jest Birmingham Panopto Keeper?
Birmingham Panopto Keeper to rozszerzenie Chrome opracowane przez Georgesab, a jego główną funkcją jest „Download Panopto Videos from UoB Panopto”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Birmingham Panopto Keeper
Pobierz pliki rozszerzeń Birmingham Panopto Keeper 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
A simple extension for Google Chrome that allows you to download videos from Panopto for later viewing. Only works for the University of Birmingham. HOW TO USE: Navigate to the Panopto video itself you want to download, click the download icon (next to your user picture) and choose where you want the video to be saved. EASY! Based on downloadPanopto by dfaour: https://github.com/dfaour/downloadPanopto Released under GNU General License 3.0, source code available: https://github.com/Georgesab/birmingham_panopto_keeper
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ijibaeamabpjdgenhlaihchhlfcephdl |
Oficjalny URL | https://chrome.google.com/webstore/detail/birmingham-panopto-keeper/ijibaeamabpjdgenhlaihchhlfcephdl |
Opis | Download Panopto Videos from UoB Panopto |
Rozmiar pliku | 18.16 KB |
Liczba instalacji | 390 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2019-02-25 |
Data Publikacji | 2019-02-25 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Georgesab |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Georgesab/birmingham_panopto_keeper |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Birmingham Panopto Keeper", "version": "1.0.1", "description": "Download Panopto Videos from UoB Panopto", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "download-icon-grey.png" }, "content_scripts": [ { "matches": [ "https:\/\/bham.cloud.panopto.eu\/*" ], "js": [ "payload.js" ] } ], "permissions": [ "activeTab", "downloads" ] } |