Moodle Monkey
Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
Moodle Monkey là gì?
Moodle Monkey là một tiện ích mở rộng Chrome được phát triển bởi Strontium Software, và tính năng chính của nó là "Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Moodle Monkey
Tải xuống các tệp mở rộng Moodle Monkey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | eomoplcgbhcgfiepjaggfnojgmmnhfkp |
URL Chính Thức | https://chrome.google.com/webstore/detail/moodle-monkey/eomoplcgbhcgfiepjaggfnojgmmnhfkp |
Mô tả | Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance. |
Kích Thước Tệp | 365 KB |
Số Lần Cài Đặt | 168 |
Phiên Bản Hiện Tại | 3.2 |
Cập Nhật Lần Cuối | 2014-11-25 |
Ngày Phát Hành | 2014-11-25 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Strontium Software |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |