MOP Review Tool
Hides answers on MOP for easy retesting
MOP Review Tool란 무엇입니까?
MOP Review Tool은(는) Raj Kundu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides answers on MOP for easy retesting"입니다.
확장 프로그램 스크린샷
MOP Review Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
An unofficial review tool for MCAT Official Prep* (MOP) This tool hides/shows answers for easy self-retesting. To use it: 1) Filter questions that you would like to review using the MOP website. Open/enter the review screen which displays the content you wish to review. 2) In quiz mode, answers are hidden at first for every question. To view the answer, you can click on any of the answer choices or press the period ('.') key. 3) Advance to the next question, either by clicking the navigation button or using the left/right arrow keys. In quiz mode, the answer choices for the new question will be hidden. Keyboard Shortcuts - Press '.' to show/hide answers for the current question - Press 'q' to enter quiz mode (hides answers for every question) - Press 'r' to enter review mode (shows answers for every question, like normal) - Press 'h' to view the help screen, which lists these shortcuts By default, every time you enter a question review session, quiz mode is enabled. To disable quiz mode (i.e., enter review mode), use the 'r' keyboard shortcut as detailed above. *Note: MCAT® is a registered trademark of the Association of American Medical Colleges (AAMC). This extension is NOT associated with either the MCAT® or the AAMC in any official capacity.
확장 프로그램 기본 정보
이름 | MOP Review Tool |
ID | gibehjdihcgpmholbfbmpidgefnfpkod |
공식 URL | https://chromewebstore.google.com/detail/mop-review-tool/gibehjdihcgpmholbfbmpidgefnfpkod |
설명 | Hides answers on MOP for easy retesting |
파일 크기 | 37.58 KB |
설치 횟수 | 46 |
현재 버전 | 0.2.2 |
최근 업데이트 | 2022-02-03 |
출시 날짜 | 2022-02-02 |
개발자 | Raj Kundu |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/rajkundu/mop-review-tool |
도움말 페이지 URL | https://github.com/rajkundu/mop-review-tool |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MOP Review Tool", "version": "0.2.2", "description": "Hides answers on MOP for easy retesting", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png", "192": "icons\/icon192.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.mcatofficialprep.org\/app\/*" ], "js": [ "main.js" ] } ], "host_permissions": [ "*:\/\/*.mcatofficialprep.org\/app\/*" ] } |