RWTH Opencast Downloader
Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.
Cos'è RWTH Opencast Downloader?
RWTH Opencast Downloader è un'estensione di Chrome sviluppata da Simon Mangel, e la sua funzione principale è "Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RWTH Opencast Downloader
Scarica i file di estensione RWTH Opencast 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
Mit dieser Erweiterung können die MP4-Videodateien des auf dem RWTH Moodle eingebetteten OpenCast/Paella Players einfach heruntergeladen werden, um diese offline zu schauen.
Neu in Version 0.0.2: Unterstützung des neuen URL-Formates Informazioni di Base sull'Estensione
| Nome | |
| ID | glkhonkpjnagnkcmhkllaocppalppiao |
| URL Ufficiale | https://chromewebstore.google.com/detail/rwth-opencast-downloader/glkhonkpjnagnkcmhkllaocppalppiao |
| Descrizione | Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle. |
| Dimensione del File | 22.66 KB |
| Conteggio Installazioni | 782 |
| Versione Corrente | 0.0.2 |
| Ultimo Aggiornamento | 2023-08-02 |
| Data di Pubblicazione | 2022-03-16 |
| Valutazione | 5.00/5 Totale 5 Valutazioni |
| Sviluppatore | Simon Mangel |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/MangelWare/rwth-opencast-downloader |
| URL della Pagina di Aiuto | https://github.com/MangelWare/rwth-opencast-downloader/issues |
| Lingue Supportate | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "RWTH Opencast Downloader",
"version": "0.0.2",
"icons": {
"32": "logo_32.png",
"48": "logo_48.png",
"64": "logo_64.png",
"128": "logo_128.png"
},
"description": "Allows to easily download the MP4 video sources of the RWTH Opencast player embedded in the RWTH Moodle.",
"author": "Simon Mangel",
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/engage.streaming.rwth-aachen.de\/*paella\/ui\/watch.html**"
],
"all_frames": true,
"js": [
"opencast-inject.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"opencast-inject-inner.js"
],
"matches": [
"https:\/\/engage.streaming.rwth-aachen.de\/*"
]
}
]
} | |