BuildBot Error 2

Skip through errors and failures in buildbot output.

BuildBot Error 2 क्या है?

BuildBot Error 2 petewil द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Skip through errors and failures in buildbot output."।

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

screenshot

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

crx प्रारूप में BuildBot Error 2 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Skip through errors in buildbot output.
- Adds buttons to buildbot compile log pages on build.chromium.org that skips to and highlights the next error or failure in the build output.

The errors and failures will not be parsed until the logs have completely loaded, which may take several seconds.

Useful for Chromium developers only to help find errors in a very large logfile.  It works by using regular expressions to find the compiler errors for the compilers we use for chromium and for the gtest unit test failure format.

Source code is here: https://github.com/petewil-G/buildbot-error

If you have any feature requests, grab the source off the website and send me a pull request!

Thanks to Evan Martin for the original version, and CarlosK for feature suggestions.                    

एक्सटेंशन की मूल जानकारी

नाम BuildBot Error 2 BuildBot Error 2
ID hcjlifkoieegmpdmahecpeefinbnbpfa
आधिकारिक URL https://chromewebstore.google.com/detail/buildbot-error-2/hcjlifkoieegmpdmahecpeefinbnbpfa
विवरण Skip through errors and failures in buildbot output.
फ़ाइल का आकार 22.19 KB
स्थापना संख्या 39
वर्तमान संस्करण 15
अंतिम अपडेट 2018-07-11
प्रकाशन तिथि 2018-07-10
डेवलपर petewil
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BuildBot Error 2",
    "version": "15",
    "description": "Skip through errors and failures in buildbot output.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/logs.chromium.org\/*",
                "*:\/\/luci-logdog.appspot.com\/*"
            ],
            "js": [
                "nexterror.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "*:\/\/logs.chromium.org\/*",
        "*:\/\/luci-logdog.appspot.com\/*"
    ],
    "manifest_version": 2
}