Book Manager +
Adds various enhancements to the Scholastic Book Manager site.
Book Manager +란 무엇입니까?
Book Manager +은(는) madisc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds various enhancements to the Scholastic Book Manager site."입니다.
확장 프로그램 스크린샷
Book Manager + 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension does the following: - Removes the delete question button from the question tab order - Disables the enter key from deleting a question - Adds a confirmation to exit page if page is in the middle of processing - Adds ability to download the quiz, in csv format, for backup in case of quiz/question loss or error - Adds ability to show the quiz sorted by page number, with the question number (second column) clickable to enable direct navigation - Adds a reading skill count which dynamically updates
확장 프로그램 기본 정보
이름 | Book Manager + |
ID | cdknonohmnlbiaocedaokbkpjkofcpdc |
공식 URL | https://chromewebstore.google.com/detail/book-manager-+/cdknonohmnlbiaocedaokbkpjkofcpdc |
설명 | Adds various enhancements to the Scholastic Book Manager site. |
파일 크기 | 44.62 KB |
설치 횟수 | 43 |
현재 버전 | 0.4 |
최근 업데이트 | 2018-07-23 |
출시 날짜 | 2018-07-23 |
개발자 | madisc |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Book Manager +", "description": "Adds various enhancements to the Scholastic Book Manager site.", "version": "0.4", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/bookmanager.scholasticlearningzone.com\/pages\/secure\/quiz-draft-view*", "https:\/\/stage-bookmanager.scholasticlearningzone.com\/pages\/secure\/quiz-draft-view*" ], "js": [ "jquery-3.1.1.min.js", "changecontent.js" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png" }, "default_title": "Book Manager +" }, "permissions": [ "declarativeContent" ] } |