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.”。

扩展截图

screenshot

下载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 + 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"
    ]
}