Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

What is Canvas Quiz Filler?

Canvas Quiz Filler is a Chrome extension developed by https://peterfoxflick.com, and its main feature is "Picks correct answers from previous submissions on a quiz.".

Extension Screenshots

screenshot

Download Canvas Quiz Filler Extension CRX File

Download Canvas Quiz Filler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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*                    

Extension Basic Information

Name Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
Official URL https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
Description Picks correct answers from previous submissions on a quiz.
File Size 19.9 KB
Installation Count 3,137
Current Version 0.1.1
Last Updated 2019-07-15
Publish Date 2019-07-15
Rating 3.38/5 Total 8 Ratings
Developer https://peterfoxflick.com
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}