Canvas Quiz Loader
Automatically load correct answers from previous quiz attempts.
Canvas Quiz Loader क्या है?
Canvas Quiz Loader Alex Shnyrov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically load correct answers from previous quiz attempts."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Canvas Quiz Loader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |