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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Moodle Monkey

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}