Pretty Bonnie

Make Bonnie outputs Pretty.

Pretty Bonnie란 무엇입니까?

Pretty Bonnie은(는) David Harris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Bonnie outputs Pretty."입니다.

확장 프로그램 스크린샷

screenshot

Pretty Bonnie 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Pretty Bonnie Pretty Bonnie
ID pgmdghgcpijfocohpmljfcimlenibhgl
공식 URL https://chromewebstore.google.com/detail/pretty-bonnie/pgmdghgcpijfocohpmljfcimlenibhgl
설명 Make Bonnie outputs Pretty.
파일 크기 39.22 KB
설치 횟수 177
현재 버전 0.2
최근 업데이트 2019-03-05
출시 날짜 2019-03-04
평점 5.00/5 총 4 개의 평점
개발자 David Harris
결제 유형 free
도움말 페이지 URL https://github.com/drharris/pretty-bonnie
지원되는 언어 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"
}