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文件
下載Book Manager +擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |