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
官方網址 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"
            ]
        }
    ]
}