Panopto Downloader
Adds download button for Panopto videos
Qu'est-ce que Panopto Downloader ?
Panopto Downloader est une extension Chrome développée par andrew-ma, et sa fonction principale est "Adds download button for Panopto videos".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Panopto Downloader
Téléchargez les fichiers d'extension Panopto Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | eiipnolnldiglhnkfhcmmppdcfnjgdna |
URL Officiel | https://chrome.google.com/webstore/detail/panopto-downloader/eiipnolnldiglhnkfhcmmppdcfnjgdna |
Description | Adds download button for Panopto videos |
Taille du Fichier | 8.11 KB |
Nombre d'Installations | 3,161 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2021-09-02 |
Date de Publication | 2021-09-02 |
Évaluation | 3.67/5 Total 9 Évaluations |
Développeur | andrew-ma |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/andrew-ma/panopto_downloader_extension/ |
Langues Prises en Charge | 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" ] } ] } |