Pretty Bonnie
Make Bonnie outputs Pretty.
Pretty Bonnieとは何ですか?
Pretty BonnieはDavid Harrisによって開発されたChromeの拡張機能で、その主な機能は「Make Bonnie outputs Pretty.」です。
拡張機能のスクリーンショット
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                     拡張機能の基本情報
| 名前 |   |  
| 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"
}  |  |