Pretty Bonnie
Make Bonnie outputs Pretty.
Apa itu Pretty Bonnie?
Pretty Bonnie adalah ekstensi Chrome yang dikembangkan oleh David Harris, dan fitur utamanya adalah "Make Bonnie outputs Pretty.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Pretty Bonnie
Unduh file ekstensi Pretty Bonnie dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Pretty Bonnie |
ID | pgmdghgcpijfocohpmljfcimlenibhgl |
URL Resmi | https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl |
Deskripsi | Make Bonnie outputs Pretty. |
Ukuran File | 39.22 KB |
Jumlah Instalasi | 177 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2019-03-05 |
Tanggal Publikasi | 2019-03-04 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | David Harris |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/drharris/pretty-bonnie |
Bahasa yang Didukung | 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" } |