Moodle Rubric Importer

Adds a button to autofill a Moodle rubric from an Excel file

Moodle Rubric Importerคืออะไร?

Moodle Rubric Importer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pol Muñoz และคุณลักษณะหลักของมันคือ "Adds a button to autofill a Moodle rubric from an Excel file"

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

screenshot
screenshot
screenshot

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

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

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

                        This unofficial extension adds an "Import Excel" button when editing a Moodle rubric.

The expected Excel format should have two rows per criterion. The first column of a criterion should contain its name / description. After that, each column should describe a level for that criterion, with the first row containing its definition and the second its score.

A number of rows at the beginning can be offset (skipped) to account for rubric headers. For each criterion, levels are dynamically included until an empty column is found. Criteria are added until an empty row is found.

An example of the expected rubric format can be seen in the screenshots.

Notes:

- The extension simulates the process of defining a rubric by programatically clicking the buttons, and has only been tested on a specific deployment of Moodle (versions 3 and 4). 

- It may take a couple of seconds to process a rubric, especially with larger files. 

- You may have to manually delete some cells if your criteria have different level numbers.

If you encounter any issue please contact the developer.                    

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

ชื่อ Moodle Rubric Importer Moodle Rubric Importer
ID mibgeikbmhnmicoopgofmcaebkoplpch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/moodle-rubric-importer/mibgeikbmhnmicoopgofmcaebkoplpch
คำอธิบาย Adds a button to autofill a Moodle rubric from an Excel file
ขนาดไฟล์ 334 KB
จำนวนการติดตั้ง 86
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-10-19
วันที่เผยแพร่ 2023-05-28
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Pol Muñoz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Pulmunyi/Moodle-Rubric-Importer/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Moodle Rubric Importer",
    "description": "Adds a button to autofill a Moodle rubric from an Excel file",
    "version": "1.1",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                ".\/scripts\/libs\/xlsx.full.min.js",
                ".\/scripts\/content.js"
            ],
            "css": [
                "styles\/main.css"
            ],
            "matches": [
                "https:\/\/*\/grade\/grading\/form\/rubric\/edit.php?areaid=*"
            ]
        }
    ]
}