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 |
公式URL | 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 |
Eメール | [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" } } |