Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

Vad är Canvas Quiz Filler?

Canvas Quiz Filler är en Chrome-tillägg utvecklad av https://peterfoxflick.com, och dess huvudfunktion är "Picks correct answers from previous submissions on a quiz.".

Tilläggsskärmbilder

screenshot

Ladda ner Canvas Quiz Filler-förlängningens CRX-fil

Ladda ner Canvas Quiz Filler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
Officiell webbadress https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
Beskrivning Picks correct answers from previous submissions on a quiz.
Filstorlek 19.9 KB
Antal Installationer 3,137
Aktuell Version 0.1.1
Senast Uppdaterad 2019-07-15
Publiceringsdatum 2019-07-15
Betyg 3.38/5 Totalt 8 Betyg
Utvecklare https://peterfoxflick.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}