Flake linker

Links to Chromium flakiness dashboard from build result pages.

What is Flake linker?

Flake linker is a Chrome extension developed by jdarpinian, and its main feature is "Links to Chromium flakiness dashboard from build result pages.".

Extension Screenshots

screenshot

Download Flake linker Extension CRX File

Download Flake linker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Flake linker Flake linker
ID boamnmbgmfnobomddmenbaicodgglkhc
Official URL https://chromewebstore.google.com/detail/flake-linker/boamnmbgmfnobomddmenbaicodgglkhc
Description Links to Chromium flakiness dashboard from build result pages.
File Size 21.02 KB
Installation Count 157
Current Version 1.11
Last Updated 2020-10-29
Publish Date 2019-08-27
Rating 5.00/5 Total 2 Ratings
Developer jdarpinian
Email [email protected]
Payment Type free
Privacy Policy Page URL https://policies.google.com/privacy
Supported Languages 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"
    ]
}