NEO LMS Assignments Downloader

This extension allows to download all the class's lesson assignments at once

Was ist NEO LMS Assignments Downloader?

NEO LMS Assignments Downloader ist eine Chrome-Erweiterung, die von Alex Lipov entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows to download all the class's lesson assignments at once".

Erweiterungsscreenshots

screenshot

NEO LMS Assignments Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie NEO LMS Assignments Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows to download all the class's lesson assignments at once in NEO LMS web platform.                    

Grundlegende Informationen zur Erweiterung

Name NEO LMS Assignments Downloader NEO LMS Assignments Downloader
ID nmnhhckkfjfcianoekankcfbcgjlfdkg
Offizielle URL https://chromewebstore.google.com/detail/neo-lms-assignments-downl/nmnhhckkfjfcianoekankcfbcgjlfdkg
Beschreibung This extension allows to download all the class's lesson assignments at once
Dateigröße 83.69 KB
Installationsanzahl 444
Aktuelle Version 0.6
Letztes Update 2019-11-06
Veröffentlichungsdatum 2019-11-06
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Alex Lipov
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/alipov/edu20-assignment-downloader
Hilfeseite URL https://github.com/alipov/edu20-assignment-downloader/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "32",
    "name": "NEO LMS Assignments Downloader",
    "description": "This extension allows to download all the class's lesson assignments at once",
    "version": "0.6",
    "background": {
        "scripts": [
            "background.js",
            "lib\/jszip-3.1.5.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.edu20.org\/teacher_dropbox_assignment\/grading*",
                "https:\/\/*.edu20.org\/teacher_freeform_assignment\/grading*",
                "http:\/\/ilearn.cyber.org.il\/teacher_dropbox_assignment\/grading*",
                "https:\/\/ilearn.cyber.org.il\/teacher_dropbox_assignment\/grading*",
                "http:\/\/ilearn.cyber.org.il\/teacher_freeform_assignment\/grading*",
                "https:\/\/ilearn.cyber.org.il\/teacher_freeform_assignment\/grading*"
            ],
            "js": [
                "lib\/jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "https:\/\/*.edu20.org\/teacher_dropbox_assignment\/*",
        "https:\/\/*.edu20.org\/teacher_freeform_assignment\/*",
        "http:\/\/ilearn.cyber.org.il\/teacher_dropbox_assignment\/grading*",
        "https:\/\/ilearn.cyber.org.il\/teacher_dropbox_assignment\/grading*",
        "http:\/\/ilearn.cyber.org.il\/teacher_freeform_assignment\/grading*",
        "https:\/\/ilearn.cyber.org.il\/teacher_freeform_assignment\/grading*",
        "downloads"
    ]
}