Quiz Fix

Hide quiz answers on VStar for review purposes

Quiz Fix क्या है?

Quiz Fix Eamon Doyle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide quiz answers on VStar for review purposes"।

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

screenshot

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

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

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

                        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                    

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

नाम Quiz Fix Quiz Fix
ID dcfmjoeidejbheinlmnggocbjhapcgoe
आधिकारिक URL https://chromewebstore.google.com/detail/quiz-fix/dcfmjoeidejbheinlmnggocbjhapcgoe
विवरण Hide quiz answers on VStar for review purposes
फ़ाइल का आकार 51.18 KB
स्थापना संख्या 163
वर्तमान संस्करण 2
अंतिम अपडेट 2018-10-15
प्रकाशन तिथि 2018-10-15
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Eamon Doyle
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}