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
官方網址 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"
}