Pretty Bonnie

Make Bonnie outputs Pretty.

Wat is Pretty Bonnie?

Pretty Bonnie is een Chrome-extensie ontwikkeld door David Harris, en de belangrijkste functie is "Make Bonnie outputs Pretty.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pretty Bonnie

Download Pretty Bonnie-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Pretty Bonnie Pretty Bonnie
ID pgmdghgcpijfocohpmljfcimlenibhgl
Officiële URL https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl
Beschrijving Make Bonnie outputs Pretty.
Bestandsgrootte 39.22 KB
Aantal Installaties 177
Huidige Versie 0.2
Laatst Bijgewerkt 2019-03-05
Publicatiedatum 2019-03-04
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar David Harris
Betalingswijze free
Help Pagina-URL https://github.com/drharris/pretty-bonnie
Ondersteunde Talen 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"
}