BuildBot Error 2

Skip through errors and failures in buildbot output.

BuildBot Error 2คืออะไร?

BuildBot Error 2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย petewil และคุณลักษณะหลักของมันคือ "Skip through errors and failures in buildbot output."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BuildBot Error 2

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

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

                        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
}