Pretty Bonnie
Make Bonnie outputs Pretty.
What is Pretty Bonnie?
Pretty Bonnie is a Chrome extension developed by David Harris, and its main feature is "Make Bonnie outputs Pretty.".
Extension Screenshots
Download Pretty Bonnie Extension CRX File
Download Pretty Bonnie extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Pretty Bonnie |
ID | pgmdghgcpijfocohpmljfcimlenibhgl |
Official URL | https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl |
Description | Make Bonnie outputs Pretty. |
File Size | 39.22 KB |
Installation Count | 177 |
Current Version | 0.2 |
Last Updated | 2019-03-05 |
Publish Date | 2019-03-04 |
Rating | 5.00/5 Total 4 Ratings |
Developer | David Harris |
Payment Type | free |
Help Page URL | https://github.com/drharris/pretty-bonnie |
Supported Languages | 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" } |