Moodle Monkey
Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
ما هو Moodle Monkey؟
Moodle Monkey هو إضافة Chrome تم تطويرها بواسطة Strontium Software، والميزة الرئيسية لها هي "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Moodle Monkey
قم بتنزيل ملفات الامتداد Moodle Monkey بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | |
ID | eomoplcgbhcgfiepjaggfnojgmmnhfkp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/moodle-monkey/eomoplcgbhcgfiepjaggfnojgmmnhfkp |
الوصف | Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance. |
حجم الملف | 365 KB |
عدد التثبيتات | 168 |
النسخة الحالية | 3.2 |
آخر تحديث | 2014-11-25 |
تاريخ النشر | 2014-11-25 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Strontium Software |
نوع الدفع | free |
اللغات المدعومة | 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" ] } ] } |