Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

ما هو Canvas Quiz Filler؟

Canvas Quiz Filler هو إضافة Chrome تم تطويرها بواسطة https://peterfoxflick.com، والميزة الرئيسية لها هي "Picks correct answers from previous submissions on a quiz.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Canvas Quiz Filler

قم بتنزيل ملفات الامتداد Canvas Quiz Filler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}