Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

Cos'è Canvas Quiz Filler?

Canvas Quiz Filler è un'estensione di Chrome sviluppata da https://peterfoxflick.com, e la sua funzione principale è "Picks correct answers from previous submissions on a quiz.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Canvas Quiz Filler

Scarica i file di estensione Canvas Quiz Filler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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*                    

Informazioni di Base sull'Estensione

Nome Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
URL Ufficiale https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
Descrizione Picks correct answers from previous submissions on a quiz.
Dimensione del File 19.9 KB
Conteggio Installazioni 3,137
Versione Corrente 0.1.1
Ultimo Aggiornamento 2019-07-15
Data di Pubblicazione 2019-07-15
Valutazione 3.38/5 Totale 8 Valutazioni
Sviluppatore https://peterfoxflick.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}