Pretty Bonnie

Make Bonnie outputs Pretty.

什么是Pretty Bonnie?

Pretty Bonnie是由David Harris开发的Chrome扩展程序,该扩展的主要功能是“Make Bonnie outputs Pretty.”。

扩展截图

screenshot

下载Pretty Bonnie扩展crx文件

下载Pretty Bonnie扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Bonnie is used in the Georgia Tech OMSCS program for automated testing of assignments. This extension makes the output on https://bonnie.udacity.com a little prettier. It appends a list of tests at the top colored by pass/partial/fail (green/yellow/red), which can be expanded to show individual consoles and return codes in a readable fashion.

Submit issues/pull requests at https://github.com/drharris/pretty-bonnie                    

扩展基本信息

名称 Pretty Bonnie Pretty Bonnie
ID pgmdghgcpijfocohpmljfcimlenibhgl
官方URL https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl
简介 Make Bonnie outputs Pretty.
文件大小 39.22 KB
安装次数 177
当前版本 0.2
更新时间 2019-03-05
上架时间 2019-03-04
评分 5.00/5 共4次评分
开发者 David Harris
付费类型 free
帮助页面URL https://github.com/drharris/pretty-bonnie
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pretty Bonnie",
    "short_name": "PrettyBonnie",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Make Bonnie outputs Pretty.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "sampleJson.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/bonnie.udacity.com\/student\/*"
            ]
        }
    ],
    "permissions": [
        "https:\/\/bonnie.udacity.com\/student\/*"
    ],
    "author": "David Harris"
}