Moodle Monkey
Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.
Moodle Monkeyとは何ですか?
Moodle MonkeyはStrontium Softwareによって開発されたChromeの拡張機能で、その主な機能は「Adds highlighting to Moodle assignment areas, allowing teachers to check for new submissions at-a-glance.」です。
拡張機能のスクリーンショット
Moodle Monkey拡張機能のCRXファイルをダウンロード
Moodle Monkey拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } ] } |