Panopto Downloader
Adds download button for Panopto videos
Co to jest Panopto Downloader?
Panopto Downloader to rozszerzenie Chrome opracowane przez andrew-ma, a jego główną funkcją jest „Adds download button for Panopto videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Panopto Downloader
Pobierz pliki rozszerzeń Panopto Downloader 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
This adds a green download button when on a Panopto video page. It uses the Panopto video page title to create a valid filename, and copies the filename to the clipboard. When the user clicks on the button, a new tab will open with the Panopto video as a .MP4 file. The user can press Ctrl+S to open the "Save As" prompt, and paste the valid filename from the clipboard.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | eiipnolnldiglhnkfhcmmppdcfnjgdna |
Oficjalny URL | https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna |
Opis | Adds download button for Panopto videos |
Rozmiar pliku | 8.11 KB |
Liczba instalacji | 3,161 |
Aktualna Wersja | 1.2.2 |
Ostatnia Aktualizacja | 2021-09-02 |
Data Publikacji | 2021-09-02 |
Ocena | 3.67/5 Łącznie 9 Oceny |
Deweloper | andrew-ma |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/andrew-ma/panopto_downloader_extension/ |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Panopto Downloader", "version": "1.2.2", "manifest_version": 2, "description": "Adds download button for Panopto videos", "homepage_url": "https:\/\/github.com\/andrew-ma\/panopto_downloader_extension", "minimum_chrome_version": "74", "icons": { "48": "\/icon.png", "96": "\/[email protected]" }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*.panopto.eu\/*", "*:\/\/*.panopto.com\/*" ], "exclude_matches": [ "*:\/\/www.panopto.com\/*", "*:\/\/support.panopto.com\/*", "*:\/\/login.panopto.com\/*" ], "js": [ "\/panopto-download-button.js" ], "css": [ "\/panopto-download-button.css" ] } ] } |