MCAST Attendance Helper

Assists MCAST lecturers in filling their attendance.

MCAST Attendance Helperคืออะไร?

MCAST Attendance Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert Abela และคุณลักษณะหลักของมันคือ "Assists MCAST lecturers in filling their attendance."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MCAST Attendance Helper

ดาวน์โหลดไฟล์ส่วนขยาย MCAST Attendance Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Note: This Chrome extension is no longer usable since the website it was meant to enhance has been shut down. It is kept online for pure reference.

MCAST Attendance Helper is meant to be used by lecturers at The Malta College of Arts, Science and Technology. Works in basic mode by default and in advanced mode if configured.

Basic Mode: Adds a new button that counts the number or students marked as present. 

Advanced Mode: Adds Autofill & Remember functionalities. Autofill Attendance is a link that automatically fills Class, Unit, Session & Duration if the attendance is being added during the lesson (day and time match). Remember allows the lecturer to save the state of attendance (Absent/Present, Reason & Remark for each student) and to automatically set them again thereafter.

Sources can be found on github.com/robert-abela/mcast-attendance-extension. Icons made by Icon Works from flaticon.com.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MCAST Attendance Helper MCAST Attendance Helper
ID bldjnibjjigjiiafdhaommngifdhekpo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mcast-attendance-helper/bldjnibjjigjiiafdhaommngifdhekpo
คำอธิบาย Assists MCAST lecturers in filling their attendance.
ขนาดไฟล์ 50.71 KB
จำนวนการติดตั้ง 115
เวอร์ชันปัจจุบัน 0.7.0
อัปเดตครั้งล่าสุด 2019-12-30
วันที่เผยแพร่ 2019-12-30
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Robert Abela
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/robert-abela/mcast-attendance-extension
URL หน้าช่วยเหลือ https://github.com/robert-abela/mcast-attendance-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MCAST Attendance Helper",
    "version": "0.7.0",
    "description": "Assists MCAST lecturers in filling their attendance.",
    "author": "Robert Abela",
    "icons": {
        "16": "img\/icon16.png",
        "24": "img\/icon24.png",
        "32": "img\/icon32.png",
        "64": "img\/icon64.png",
        "128": "img\/icon128.png",
        "256": "img\/icon256.png",
        "512": "img\/icon512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/attendance.mcast.edu.mt\/Home\/Create?Length=4",
                "*:\/\/attendance.mcast.edu.mt\/Home\/Edit*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js",
                "basic.js"
            ]
        },
        {
            "matches": [
                "*:\/\/attendance.mcast.edu.mt\/Home\/Create*autofill"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js",
                "advanced.js"
            ]
        },
        {
            "matches": [
                "*:\/\/attendance.mcast.edu.mt\/Home\/Pending*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "inject-link.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon64.png",
        "default_popup": "popup.html",
        "default_title": "MCAST Attendance Helper"
    },
    "permissions": [
        "*:\/\/attendance.mcast.edu.mt\/Home\/*",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "homepage_url": "https:\/\/github.com\/robert-abela\/mcast-attendance-extension",
    "short_name": "MCAST Attendance"
}