Pretty Bonnie

Make Bonnie outputs Pretty.

Qu'est-ce que Pretty Bonnie ?

Pretty Bonnie est une extension Chrome développée par David Harris, et sa fonction principale est "Make Bonnie outputs Pretty.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pretty Bonnie

Téléchargez les fichiers d'extension Pretty Bonnie au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Pretty Bonnie Pretty Bonnie
ID pgmdghgcpijfocohpmljfcimlenibhgl
URL Officiel https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl
Description Make Bonnie outputs Pretty.
Taille du Fichier 39.22 KB
Nombre d'Installations 177
Version Actuelle 0.2
Dernière Mise à Jour 2019-03-05
Date de Publication 2019-03-04
Évaluation 5.00/5 Total 4 Évaluations
Développeur David Harris
Type de Paiement free
URL de la Page d'Aide https://github.com/drharris/pretty-bonnie
Langues Prises en Charge 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"
}