Quiz Fix

Hide quiz answers on VStar for review purposes

Quiz Fix là gì?

Quiz Fix là một tiện ích mở rộng Chrome được phát triển bởi Eamon Doyle, và tính năng chính của nó là "Hide quiz answers on VStar for review purposes".

Ả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 Quiz Fix

Tải xuống các tệp mở rộng Quiz Fix 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

                        Hide quiz answers on VStar for review purposes, only applicable to Vanderbilt medical students.

How to use:  Open a quiz that you have already submitted, click the icon, and click "hide quiz answers."  You can then retake the quiz and click "show quiz answers" at the end to compare with the answers.  Note:  this will not show answers for quizzes that have not been submitted and graded.

You can also have the quiz navigation and timing block remain visible when you scroll by clicking "Float Nav Block"

It is open-source and the code is available at https://github.com/cornercase/vstar-quiz-fix


new in v2 - add option to float the quiz navigation and timing block, so it stays on screen while scrolling                    

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

Tên Quiz Fix Quiz Fix
ID dcfmjoeidejbheinlmnggocbjhapcgoe
URL Chính Thức https://chromewebstore.google.com/detail/quiz-fix/dcfmjoeidejbheinlmnggocbjhapcgoe
Mô tả Hide quiz answers on VStar for review purposes
Kích Thước Tệp 51.18 KB
Số Lần Cài Đặt 163
Phiên Bản Hiện Tại 2
Cập Nhật Lần Cuối 2018-10-15
Ngày Phát Hành 2018-10-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Eamon Doyle
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quiz Fix",
    "description": "Hide quiz answers on VStar for review purposes",
    "version": "2",
    "author": "Eamon Doyle",
    "icons": {
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vstar-learn.app.vanderbilt.edu\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "hideAnswers.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/vstar-learn.app.vanderbilt.edu\/*"
    ],
    "browser_action": {
        "title": "Test",
        "default_popup": "popup.html"
    }
}