Quiz Fix

Hide quiz answers on VStar for review purposes

Quiz Fixとは何ですか?

Quiz FixはEamon Doyleによって開発されたChromeの拡張機能で、その主な機能は「Hide quiz answers on VStar for review purposes」です。

拡張機能のスクリーンショット

screenshot

Quiz Fix拡張機能のCRXファイルをダウンロード

Quiz Fix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}