Canvas Quiz Loader
Automatically load correct answers from previous quiz attempts.
什麼是Canvas Quiz Loader?
Canvas Quiz Loader是由Alex Shnyrov開發的Chrome擴展程式,該擴展的主要功能是“Automatically load correct answers from previous quiz attempts.”。
擴展截圖
下載Canvas Quiz Loader擴展crx文件
下載Canvas Quiz Loader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Version 0.2.3 - Fixed a braking canvas change. Quizzes that don't have an associated gradebook entry will not auto-populate (they don't affect the score) Are you tired of opening two windows just so that you can see what you've answered in the previous quiz attempt? Well, I understand. It gets even worse when you have multiple submissions that need to be combined into one. Canvas Quiz Loader has been built to solve this common problem. It scans your previous submissions, picks out correct answers, and automatically applies them to the current attempt. ============================================== Currently supported question types: - Multiple Choice - True/False - Fill In The Blank - Multiple Answer - Matching - Numerical Answer - Formula Question* - Essay Question * If formula or variables within the formula change, the answer might have to be changed as well. ============================================== Acknowledgment Icon made by Freepik from www.flaticon.com
擴展基本資訊
名稱 | Canvas Quiz Loader |
ID | pfagnepdndhkmilceinbebdfbmiddagl |
官方網址 | https://chromewebstore.google.com/detail/canvas-quiz-loader/pfagnepdndhkmilceinbebdfbmiddagl |
簡介 | Automatically load correct answers from previous quiz attempts. |
檔案大小 | 321 KB |
安裝次數 | 40,590 |
目前版本 | 0.2.4 |
更新時間 | 2022-09-26 |
上架時間 | 2020-05-09 |
評分 | 4.30/5 共 46 次評分 |
開發者 | Alex Shnyrov |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Quiz Loader", "short_name": "Quiz Loader", "version": "0.2.4", "description": "Automatically load correct answers from previous quiz attempts.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.instructure.com\/courses\/*\/quizzes\/*\/take*", "*:\/\/*.edu\/courses\/*\/quizzes\/*\/take*" ], "js": [ "index.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "index.js", "quiz_loader.js", "submissions.js", "helpers.js", "answers.js", "display.js", "question_types.js" ], "browser_action": { "default_icon": "icon128.png" } } |