BuildBot Error 2

Skip through errors and failures in buildbot output.

BuildBot Error 2란 무엇입니까?

BuildBot Error 2은(는) petewil에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip through errors and failures in buildbot output."입니다.

확장 프로그램 스크린샷

screenshot

BuildBot Error 2 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}