Panopto Downloader
Adds download button for Panopto videos
Cos'è Panopto Downloader?
Panopto Downloader è un'estensione di Chrome sviluppata da andrew-ma, e la sua funzione principale è "Adds download button for Panopto videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Panopto Downloader
Scarica i file di estensione Panopto Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | eiipnolnldiglhnkfhcmmppdcfnjgdna |
URL Ufficiale | https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna |
Descrizione | Adds download button for Panopto videos |
Dimensione del File | 8.11 KB |
Conteggio Installazioni | 3,161 |
Versione Corrente | 1.2.2 |
Ultimo Aggiornamento | 2021-09-02 |
Data di Pubblicazione | 2021-09-02 |
Valutazione | 3.67/5 Totale 9 Valutazioni |
Sviluppatore | andrew-ma |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/andrew-ma/panopto_downloader_extension/ |
Lingue Supportate | 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" ] } ] } |