Flake linker

Links to Chromium flakiness dashboard from build result pages.

Wat is Flake linker?

Flake linker is een Chrome-extensie ontwikkeld door jdarpinian, en de belangrijkste functie is "Links to Chromium flakiness dashboard from build result pages.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Flake linker

Download Flake linker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Flake linker Flake linker
ID boamnmbgmfnobomddmenbaicodgglkhc
Officiële URL https://chromewebstore.google.com/detail/flake-linker/boamnmbgmfnobomddmenbaicodgglkhc
Beschrijving Links to Chromium flakiness dashboard from build result pages.
Bestandsgrootte 21.02 KB
Aantal Installaties 157
Huidige Versie 1.11
Laatst Bijgewerkt 2020-10-29
Publicatiedatum 2019-08-27
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar jdarpinian
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://policies.google.com/privacy
Ondersteunde Talen 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"
    ]
}