Canvas Quiz Filler

Picks correct answers from previous submissions on a quiz.

Canvas Quiz Filler là gì?

Canvas Quiz Filler là một tiện ích mở rộng Chrome được phát triển bởi https://peterfoxflick.com, và tính năng chính của nó là "Picks correct answers from previous submissions on a quiz.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Canvas Quiz Filler

Tải xuống các tệp mở rộng Canvas Quiz Filler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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*                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Canvas Quiz Filler Canvas Quiz Filler
ID jajkmamknneolieidnbnlhighhehbpik
URL Chính Thức https://chromewebstore.google.com/detail/canvas-quiz-filler/jajkmamknneolieidnbnlhighhehbpik
Mô tả Picks correct answers from previous submissions on a quiz.
Kích Thước Tệp 19.9 KB
Số Lần Cài Đặt 3,137
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2019-07-15
Ngày Phát Hành 2019-07-15
Đánh Giá 3.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://peterfoxflick.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}