Moodle Monkey

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

Vad är Moodle Monkey?

Moodle Monkey är en Chrome-tillägg utvecklad av Strontium Software, och dess huvudfunktion är "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.".

Tilläggsskärmbilder

screenshot

Ladda ner Moodle Monkey-förlängningens CRX-fil

Ladda ner Moodle Monkey-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

                        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.                    

Grundläggande Information om Tillägg

Namn Moodle Monkey Moodle Monkey
ID eomoplcgbhcgfiepjaggfnojgmmnhfkp
Officiell webbadress https://chrome.google.com/webstore/detail/moodle-monkey/eomoplcgbhcgfiepjaggfnojgmmnhfkp
Beskrivning Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
Filstorlek 365 KB
Antal Installationer 168
Aktuell Version 3.2
Senast Uppdaterad 2014-11-25
Publiceringsdatum 2014-11-25
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Strontium Software
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}