Quiz Fix

Hide quiz answers on VStar for review purposes

Co to jest Quiz Fix?

Quiz Fix to rozszerzenie Chrome opracowane przez Eamon Doyle, a jego główną funkcją jest „Hide quiz answers on VStar for review purposes”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Quiz Fix

Pobierz pliki rozszerzeń Quiz Fix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Quiz Fix Quiz Fix
ID dcfmjoeidejbheinlmnggocbjhapcgoe
Oficjalny URL https://chromewebstore.google.com/detail/quiz-fix/dcfmjoeidejbheinlmnggocbjhapcgoe
Opis Hide quiz answers on VStar for review purposes
Rozmiar pliku 51.18 KB
Liczba instalacji 163
Aktualna Wersja 2
Ostatnia Aktualizacja 2018-10-15
Data Publikacji 2018-10-15
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Eamon Doyle
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}