Moodle Monkey

Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.

Was ist Moodle Monkey?

Moodle Monkey ist eine Chrome-Erweiterung, die von Strontium Software entwickelt wurde, und ihr Hauptmerkmal ist "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.".

Erweiterungsscreenshots

screenshot

Moodle Monkey-Erweiterungs-CRX-Datei herunterladen

Laden Sie Moodle Monkey-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 offers enhancements for Moodle educational websites.

When a teacher browses to a assignment submission area, they will see new submissions highlighted in red.  Existing graded submissions are highlighted in green.                    

Grundlegende Informationen zur Erweiterung

Name Moodle Monkey Moodle Monkey
ID eomoplcgbhcgfiepjaggfnojgmmnhfkp
Offizielle URL https://chrome.google.com/webstore/detail/moodle-monkey/eomoplcgbhcgfiepjaggfnojgmmnhfkp
Beschreibung Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
Dateigröße 365 KB
Installationsanzahl 168
Aktuelle Version 3.2
Letztes Update 2014-11-25
Veröffentlichungsdatum 2014-11-25
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Strontium Software
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moodle Monkey",
    "short_name": "MoodleMonkey",
    "description": "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.",
    "author": "John King",
    "version": "3.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/mod\/"
    ],
    "browser_action": {
        "default_title": "MoodleMonkey",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/mod\/assignment\/view.php*",
                "*:\/\/*\/mod\/assign\/view.php*",
                "*:\/\/*\/mod\/assignment\/submissions.php*"
            ],
            "run_at": "document_idle",
            "js": [
                "HighlightNewSubmissions.js"
            ]
        }
    ]
}