Quiz Fix

Hide quiz answers on VStar for review purposes

ما هو Quiz Fix؟

Quiz Fix هو إضافة Chrome تم تطويرها بواسطة Eamon Doyle، والميزة الرئيسية لها هي "Hide quiz answers on VStar for review purposes".

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

screenshot

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

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