Flake linker

Links to Chromium flakiness dashboard from build result pages.

Flake linkerคืออะไร?

Flake linker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jdarpinian และคุณลักษณะหลักของมันคือ "Links to Chromium flakiness dashboard from build result pages."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Flake linker

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}