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 |
官方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 } |