Moodle Rubric Importer
Adds a button to autofill a Moodle rubric from an Excel file
Moodle Rubric Importer란 무엇입니까?
Moodle Rubric Importer은(는) Pol Muñoz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button to autofill a Moodle rubric from an Excel file"입니다.
확장 프로그램 스크린샷
Moodle Rubric Importer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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=*" ] } ] } |