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.”。
擴展截圖
下載BuildBot Error 2擴展crx文件
下載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 |
ID | hcjlifkoieegmpdmahecpeefinbnbpfa |
官方網址 | 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 } |