Book Manager +

Adds various enhancements to the Scholastic Book Manager site.

What is Book Manager +?

Book Manager + is a Chrome extension developed by madisc, and its main feature is "Adds various enhancements to the Scholastic Book Manager site.".

Extension Screenshots

screenshot

Download Book Manager + Extension CRX File

Download Book Manager + extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Book Manager + Book Manager +
ID cdknonohmnlbiaocedaokbkpjkofcpdc
Official URL https://chromewebstore.google.com/detail/book-manager-+/cdknonohmnlbiaocedaokbkpjkofcpdc
Description Adds various enhancements to the Scholastic Book Manager site.
File Size 44.62 KB
Installation Count 43
Current Version 0.4
Last Updated 2018-07-23
Publish Date 2018-07-23
Developer madisc
Payment Type free
Supported Languages 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"
    ]
}