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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}