Pretty Bonnie
Make Bonnie outputs Pretty.
Vad är Pretty Bonnie?
Pretty Bonnie är en Chrome-tillägg utvecklad av David Harris, och dess huvudfunktion är "Make Bonnie outputs Pretty.".
Tilläggsskärmbilder
Ladda ner Pretty Bonnie-förlängningens CRX-fil
Ladda ner Pretty Bonnie-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | pgmdghgcpijfocohpmljfcimlenibhgl | 
| Officiell webbadress | https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl | 
| Beskrivning | Make Bonnie outputs Pretty. | 
| Filstorlek | 39.22 KB | 
| Antal Installationer | 177 | 
| Aktuell Version | 0.2 | 
| Senast Uppdaterad | 2019-03-05 | 
| Publiceringsdatum | 2019-03-04 | 
| Betyg | 5.00/5 Totalt 4 Betyg | 
| Utvecklare | David Harris | 
| Betalningssätt | free | 
| Hjälpsida URL | https://github.com/drharris/pretty-bonnie | 
| Stödda Språk | 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"
}  |  |