BuildBot Error 2
Skip through errors and failures in buildbot output.
BuildBot Error 2 là gì?
BuildBot Error 2 là một tiện ích mở rộng Chrome được phát triển bởi petewil, và tính năng chính của nó là "Skip through errors and failures in buildbot output.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BuildBot Error 2
Tải xuống các tệp mở rộng BuildBot Error 2 dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BuildBot Error 2 |
ID | hcjlifkoieegmpdmahecpeefinbnbpfa |
URL Chính Thức | https://chromewebstore.google.com/detail/buildbot-error-2/hcjlifkoieegmpdmahecpeefinbnbpfa |
Mô tả | Skip through errors and failures in buildbot output. |
Kích Thước Tệp | 22.19 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 15 |
Cập Nhật Lần Cuối | 2018-07-11 |
Ngày Phát Hành | 2018-07-10 |
Nhà Phát Triển | petewil |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |