Moodle Downloader

A chrome extension for downloading Moodle resources

Cos'è Moodle Downloader?

Moodle Downloader è un'estensione di Chrome sviluppata da kmChrysalis, e la sua funzione principale è "A chrome extension for downloading Moodle resources".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Moodle Downloader

Scarica i file di estensione Moodle 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

                        An open-source chrome extension that enables students to download files from Moodle with a click of a button!
Complete rework of similar extension by @harsilspatel, all credits at GitHub page.

* Hebrew support
* Fewer elements
* Bug fixes

IMPORTANT: Please save your resources out of standard 'Downloads' directory because the extension will overwrite any conflicted documents.

Bugs & ideas: https://forms.gle/HPAXPGUscXd8BGDr8
Source code: https://github.com/kmChrysalis/moodle-downloader
Support me: https://www.paypal.me/KonstantinMaltcev                    

Informazioni di Base sull'Estensione

Nome Moodle Downloader Moodle Downloader
ID egdgajocnmpjhghpglffhngdojcinkhn
URL Ufficiale https://chromewebstore.google.com/detail/moodle-downloader/egdgajocnmpjhghpglffhngdojcinkhn
Descrizione A chrome extension for downloading Moodle resources
Dimensione del File 239 KB
Conteggio Installazioni 930
Versione Corrente 2.1.9
Ultimo Aggiornamento 2021-05-10
Data di Pubblicazione 2020-04-15
Valutazione 4.38/5 Totale 16 Valutazioni
Sviluppatore kmChrysalis
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kmChrysalis/moodle-downloader
URL della Pagina di Aiuto https://www.paypal.me/KonstantinMaltcev
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/19bf9e30-c112-46d1-b13b-051b2a3944ab
Lingue Supportate iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moodle Downloader",
    "version": "2.1.9",
    "description": "A chrome extension for downloading Moodle resources",
    "icons": {
        "16": "assets\/icon16.png",
        "24": "assets\/icon24.png",
        "32": "assets\/icon32.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png",
        "256": "assets\/icon256.png",
        "512": "assets\/icon512.png"
    },
    "browser_action": {
        "default_popup": "\/src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*course*"
            ],
            "run_at": "document_idle",
            "js": [
                "src\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "assets\/*"
    ]
}