Canvas Quiz Filler
Picks correct answers from previous submissions on a quiz.
Hvad er Canvas Quiz Filler?
Canvas Quiz Filler er en Chrome-udvidelse udviklet af https://peterfoxflick.com, og dens hovedfunktion er "Picks correct answers from previous submissions on a quiz.".
Udvidelsesskærmbilleder
Download Canvas Quiz Filler-udvidelses-CRX-fil
Download Canvas Quiz Filler-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Now you don't need to have two windows open and hunt through previous attempts. This extension will automatically go through your previous attempts on a quiz in Canvas. If you got a question right (or mostly right) it will pull in those answers into your current attempt. If you got a question wrong it will prevent you from selecting that choice again.
It currently supports:
- Multiple Choice
- True/False
- Matching
- Short Response
- Essay
*Warning: For math based questions, if the variables change than you will need to change the answer* Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jajkmamknneolieidnbnlhighhehbpik |
| Officiel URL | https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik |
| Beskrivelse | Picks correct answers from previous submissions on a quiz. |
| Filstørrelse | 19.9 KB |
| Antal Installationer | 3,137 |
| Nuværende Version | 0.1.1 |
| Senest Opdateret | 2019-07-15 |
| Udgivelsesdato | 2019-07-15 |
| Bedømmelse | 3.38/5 Samlet 8 Bedømmelser |
| Udvikler | https://peterfoxflick.com |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Canvas Quiz Filler",
"version": "0.1.1",
"description": "Picks correct answers from previous submissions on a quiz.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"https:\/\/*.instructure.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.instructure.com\/courses\/*\/quizzes\/*\/take"
],
"js": [
"content.js"
]
}
]
} | |