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.”。

扩展截图

screenshot

下载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 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"
    ]
}