Moodle Rubric Importer
Adds a button to autofill a Moodle rubric from an Excel file
Moodle Rubric Importer क्या है?
Moodle Rubric Importer Pol Muñoz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button to autofill a Moodle rubric from an Excel file"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Moodle Rubric Importer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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=*" ] } ] } |