Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

Canvas Quiz Filler क्या है?

Canvas Quiz Filler https://peterfoxflick.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Picks correct answers from previous submissions on a quiz."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Canvas Quiz Filler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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*                    

एक्सटेंशन की मूल जानकारी

नाम Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
आधिकारिक URL https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
विवरण Picks correct answers from previous submissions on a quiz.
फ़ाइल का आकार 19.9 KB
स्थापना संख्या 3,137
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2019-07-15
प्रकाशन तिथि 2019-07-15
रेटिंग 3.38/5 कुल 8 रेटिंग्स
डेवलपर https://peterfoxflick.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}