Pretty Bonnie

Make Bonnie outputs Pretty.

Cos'è Pretty Bonnie?

Pretty Bonnie è un'estensione di Chrome sviluppata da David Harris, e la sua funzione principale è "Make Bonnie outputs Pretty.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pretty Bonnie

Scarica i file di estensione Pretty Bonnie in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Pretty Bonnie Pretty Bonnie
ID pgmdghgcpijfocohpmljfcimlenibhgl
URL Ufficiale https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl
Descrizione Make Bonnie outputs Pretty.
Dimensione del File 39.22 KB
Conteggio Installazioni 177
Versione Corrente 0.2
Ultimo Aggiornamento 2019-03-05
Data di Pubblicazione 2019-03-04
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore David Harris
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/drharris/pretty-bonnie
Lingue Supportate 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"
}