Pretty Bonnie

Make Bonnie outputs Pretty.

Was ist Pretty Bonnie?

Pretty Bonnie ist eine Chrome-Erweiterung, die von David Harris entwickelt wurde, und ihr Hauptmerkmal ist "Make Bonnie outputs Pretty.".

Erweiterungsscreenshots

screenshot

Pretty Bonnie-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pretty Bonnie-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Pretty Bonnie Pretty Bonnie
ID pgmdghgcpijfocohpmljfcimlenibhgl
Offizielle URL https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl
Beschreibung Make Bonnie outputs Pretty.
Dateigröße 39.22 KB
Installationsanzahl 177
Aktuelle Version 0.2
Letztes Update 2019-03-05
Veröffentlichungsdatum 2019-03-04
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler David Harris
Zahlungsart free
Hilfeseite URL https://github.com/drharris/pretty-bonnie
Unterstützte Sprachen 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"
}