Pretty Bonnie
Make Bonnie outputs Pretty.
Pretty Bonnie là gì?
Pretty Bonnie là một tiện ích mở rộng Chrome được phát triển bởi David Harris, và tính năng chính của nó là "Make Bonnie outputs Pretty.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pretty Bonnie
Tải xuống các tệp mở rộng Pretty Bonnie dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pretty Bonnie |
ID | pgmdghgcpijfocohpmljfcimlenibhgl |
URL Chính Thức | https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl |
Mô tả | Make Bonnie outputs Pretty. |
Kích Thước Tệp | 39.22 KB |
Số Lần Cài Đặt | 177 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2019-03-05 |
Ngày Phát Hành | 2019-03-04 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | David Harris |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/drharris/pretty-bonnie |
Ngôn Ngữ Được Hỗ Trợ | 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" } |