Flake linker
Links to Chromium flakiness dashboard from build result pages.
Flake linker là gì?
Flake linker là một tiện ích mở rộng Chrome được phát triển bởi jdarpinian, và tính năng chính của nó là "Links to Chromium flakiness dashboard from build result pages.".
Ả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 Flake linker
Tải xuống các tệp mở rộng Flake linker 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
Makes it easy to see all failures for a single test across the fleet. Automatically hides green build steps so you can see the failure immediately. Turns build log links into deep links directly to the failure line in the log. Built by jdarpinian@, source code at http://go/flake_linker_source (Google internal) This extension does not collect any data.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Flake linker |
ID | boamnmbgmfnobomddmenbaicodgglkhc |
URL Chính Thức | https://chromewebstore.google.com/detail/flake-linker/boamnmbgmfnobomddmenbaicodgglkhc |
Mô tả | Links to Chromium flakiness dashboard from build result pages. |
Kích Thước Tệp | 21.02 KB |
Số Lần Cài Đặt | 157 |
Phiên Bản Hiện Tại | 1.11 |
Cập Nhật Lần Cuối | 2020-10-29 |
Ngày Phát Hành | 2019-08-27 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | jdarpinian |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://policies.google.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flake linker", "description": "Links to Chromium flakiness dashboard from build result pages.", "version": "1.11", "manifest_version": 2, "icons": { "128": "icon128.png" }, "content_scripts": [ { "js": [ "flake_linker.js" ], "matches": [ "*:\/\/ci.chromium.org\/*" ], "exclude_matches": [ "*:\/\/ci.chromium.org\/ui\/*" ], "run_at": "document_idle" }, { "js": [ "flake_linker_new_build_page.js" ], "matches": [ "*:\/\/ci.chromium.org\/ui\/*" ], "run_at": "document_idle" }, { "js": [ "log_scroller.js" ], "matches": [ "*:\/\/chromium-swarm.appspot.com\/*", "*:\/\/chrome-swarming.appspot.com\/*" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ] } |