Moodle Mass Downloader

Mass Download a moodle courses files

Vad är Moodle Mass Downloader?

Moodle Mass Downloader är en Chrome-tillägg utvecklad av Tomer Keren, och dess huvudfunktion är "Mass Download a moodle courses files".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Moodle Mass Downloader-förlängningens CRX-fil

Ladda ner Moodle Mass Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        A simple extention to help you mass download sections of moodle courses... _just in case it crashes again_.                    

Grundläggande Information om Tillägg

Namn Moodle Mass Downloader Moodle Mass Downloader
ID cibfhhncgchiihdnemimipceamplooeo
Officiell webbadress https://chromewebstore.google.com/detail/moodle-mass-downloader/cibfhhncgchiihdnemimipceamplooeo
Beskrivning Mass Download a moodle courses files
Filstorlek 22.23 KB
Antal Installationer 403
Aktuell Version 1.07
Senast Uppdaterad 2018-05-16
Publiceringsdatum 2018-05-16
Betyg 4.29/5 Totalt 7 Betyg
Utvecklare Tomer Keren
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Tadaboody/Moodle-Mass-Downloader
Hjälpsida URL https://github.com/Tadaboody/Moodle-Mass-Downloader
Stödda Språk iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moodle Mass Downloader",
    "short_name": "Moodle Downloader",
    "description": "Mass Download a moodle courses files",
    "version": "1.07",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon24.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ac.il\/*course\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*.ac.il\/*cs\/*",
        "downloads"
    ]
}