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ファイルをダウンロード
Flake linker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |