Moodle Monkey
Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
What is Moodle Monkey?
Moodle Monkey is a Chrome extension developed by Strontium Software, and its main feature is "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.".
Extension Screenshots
Download Moodle Monkey Extension CRX File
Download Moodle Monkey extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | eomoplcgbhcgfiepjaggfnojgmmnhfkp |
Official URL | https://chrome.google.com/webstore/detail/moodle-monkey/eomoplcgbhcgfiepjaggfnojgmmnhfkp |
Description | Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance. |
File Size | 365 KB |
Installation Count | 168 |
Current Version | 3.2 |
Last Updated | 2014-11-25 |
Publish Date | 2014-11-25 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Strontium Software |
Payment Type | free |
Supported Languages | 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" ] } ] } |