Pretty Bonnie

Make Bonnie outputs Pretty.

Pretty Bonnieคืออะไร?

Pretty Bonnie เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Harris และคุณลักษณะหลักของมันคือ "Make Bonnie outputs Pretty."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pretty Bonnie

ดาวน์โหลดไฟล์ส่วนขยาย Pretty Bonnie ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}