StudIP Video Download
Fügt im Opencast Videoplayer von StudIP eine Downloadmöglichkeit ein
Cos'è StudIP Video Download?
StudIP Video Download è un'estensione di Chrome sviluppata da https://moritz-riedel.de, e la sua funzione principale è "Fügt im Opencast Videoplayer von StudIP eine Downloadmöglichkeit ein".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione StudIP Video Download
Scarica i file di estensione StudIP Video Download 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
Für Studis der TU-Braunschweig und der Universität Bremen Disclaimer: Es wird darauf hingewiesen, dass die Bestimmungen des jeweiligen Urhebers einzuhalten sind. Dieses Tool ist nur für das Erzeugen von Privatkopien zum persönlichen Gebrauch vorgesehen. Für Verletzungen des Urheberrechts durch Verbreiten der Videos ist der Nutzer verantwortlich.
Informazioni di Base sull'Estensione
Nome | StudIP Video Download |
ID | nlbpeboobplnglcgpocphmdkmmjekhan |
URL Ufficiale | https://chromewebstore.google.com/detail/studip-video-download/nlbpeboobplnglcgpocphmdkmmjekhan |
Descrizione | Fügt im Opencast Videoplayer von StudIP eine Downloadmöglichkeit ein |
Dimensione del File | 18.98 KB |
Conteggio Installazioni | 271 |
Versione Corrente | 1.8.2 |
Ultimo Aggiornamento | 2023-11-17 |
Data di Pubblicazione | 2021-11-12 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://moritz-riedel.de |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/RIVEK-Development/StudIP-Video-Download |
URL della Pagina di Aiuto | https://moritz-riedel.de/StudIP-Video-Download/ |
Lingue Supportate | de |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "StudIP Video Download", "version": "1.8.2", "description": "F\u00fcgt im Opencast Videoplayer von StudIP eine Downloadm\u00f6glichkeit ein", "manifest_version": 3, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/opencast-present.tu-braunschweig.de\/*", "https:\/\/opencast03.zmml.uni-bremen.de\/*" ], "js": [ "content.js" ], "all_frames": true }, { "matches": [ "https:\/\/studip.tu-braunschweig.de\/plugins.php\/opencast\/*", "https:\/\/elearning.uni-bremen.de\/plugins.php\/opencast\/*" ], "js": [ "content2.js" ] }, { "matches": [ "https:\/\/studip.uni-hannover.de\/plugins.php\/flowcastsplugin\/media\/player*" ], "js": [ "content3.js" ] } ], "web_accessible_resources": [ { "resources": [ "download.svg", "download_round.svg" ], "matches": [ "https:\/\/opencast-present.tu-braunschweig.de\/*", "https:\/\/opencast03.zmml.uni-bremen.de\/*" ] } ], "permissions": [ "downloads" ] } |