Pretty Bonnie

Make Bonnie outputs Pretty.

Pretty Bonnie क्या है?

Pretty Bonnie David Harris द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make Bonnie outputs Pretty."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pretty Bonnie एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}