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.”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Moodle Monkey Moodle Monkey
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"
            ]
        }
    ]
}