Flake linker
Links to Chromium flakiness dashboard from build result pages.
Flake linker란 무엇입니까?
Flake linker은(는) jdarpinian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Links to Chromium flakiness dashboard from build result pages."입니다.
확장 프로그램 스크린샷
Flake linker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Flake linker |
ID | boamnmbgmfnobomddmenbaicodgglkhc |
공식 URL | https://chromewebstore.google.com/detail/flake-linker/boamnmbgmfnobomddmenbaicodgglkhc |
설명 | Links to Chromium flakiness dashboard from build result pages. |
파일 크기 | 21.02 KB |
설치 횟수 | 157 |
현재 버전 | 1.11 |
최근 업데이트 | 2020-10-29 |
출시 날짜 | 2019-08-27 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | jdarpinian |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://policies.google.com/privacy |
지원되는 언어 | 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" ] } |