Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

Co to jest Canvas Quiz Filler?

Canvas Quiz Filler to rozszerzenie Chrome opracowane przez https://peterfoxflick.com, a jego główną funkcją jest „Picks correct answers from previous submissions on a quiz.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Canvas Quiz Filler

Pobierz pliki rozszerzeń Canvas Quiz Filler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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*                    

Podstawowe informacje o rozszerzeniu

Nazwa Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
Oficjalny URL https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
Opis Picks correct answers from previous submissions on a quiz.
Rozmiar pliku 19.9 KB
Liczba instalacji 3,137
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2019-07-15
Data Publikacji 2019-07-15
Ocena 3.38/5 Łącznie 8 Oceny
Deweloper https://peterfoxflick.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}