TryBot Re-Runner

This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.

TryBot Re-Runnerคืออะไร?

TryBot Re-Runner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ajose และคุณลักษณะหลักของมันคือ "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TryBot Re-Runner

ดาวน์โหลดไฟล์ส่วนขยาย TryBot Re-Runner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Love abusing trybots? Hate selecting each failed and flaky bot by hand when you want to run them again? 

This extension adds an extra button, "Select Failures", to the "Choose trybots" pop-up window in Rietveld. When you click "Select Failures", the extension will automatically check the boxes for all trybots that have 1) failed or been flaky at least once, and 2) never passed. Then just click "Update" as normal.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TryBot Re-Runner TryBot Re-Runner
ID hidamppghiegbmolihgabohmibkmkgpn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trybot-re-runner/hidamppghiegbmolihgabohmibkmkgpn
คำอธิบาย This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.
ขนาดไฟล์ 298 KB
จำนวนการติดตั้ง 61
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2015-11-04
วันที่เผยแพร่ 2015-11-04
ผู้พัฒนา ajose
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TryBot Re-Runner",
    "description": "This extension adds a 'Select Failures' button to the trybot popup window so you don't have to select them by hand.",
    "version": "1.3",
    "icons": {
        "128": "facepalm.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codereview.chromium.org\/*",
                "*:\/\/chromiumcodereview.appspot.com\/*"
            ],
            "exclude_globs": [
                "*all*",
                "*mine*",
                "*starred*",
                "*search*",
                "*settings*"
            ],
            "js": [
                "rerunner.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}