Moodle Monkey
Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
Cos'è Moodle Monkey?
Moodle Monkey è un'estensione di Chrome sviluppata da Strontium Software, e la sua funzione principale è "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Moodle Monkey
Scarica i file di estensione Moodle Monkey in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | eomoplcgbhcgfiepjaggfnojgmmnhfkp |
URL Ufficiale | https://chrome.google.com/webstore/detail/moodle-monkey/eomoplcgbhcgfiepjaggfnojgmmnhfkp |
Descrizione | Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance. |
Dimensione del File | 365 KB |
Conteggio Installazioni | 168 |
Versione Corrente | 3.2 |
Ultimo Aggiornamento | 2014-11-25 |
Data di Pubblicazione | 2014-11-25 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Strontium Software |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |