Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

Qu'est-ce que Canvas Quiz Filler ?

Canvas Quiz Filler est une extension Chrome développée par https://peterfoxflick.com, et sa fonction principale est "Picks correct answers from previous submissions on a quiz.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Canvas Quiz Filler

Téléchargez les fichiers d'extension Canvas Quiz Filler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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*                    

Informations de Base sur l'Extension

Nom Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
URL Officiel https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
Description Picks correct answers from previous submissions on a quiz.
Taille du Fichier 19.9 KB
Nombre d'Installations 3,137
Version Actuelle 0.1.1
Dernière Mise à Jour 2019-07-15
Date de Publication 2019-07-15
Évaluation 3.38/5 Total 8 Évaluations
Développeur https://peterfoxflick.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}