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”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | dcfmjoeidejbheinlmnggocbjhapcgoe |
官方網址 | 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" } } |